.busbar-ref: record busbar 1.5.4 (4f42bb9dd5aad4e65d8524ba71a534cfecd… #65
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Calls the canonical plugin-ci reusable workflow (GetBusbar/busbar/.github/workflows/plugin-ci.yml) | |
| # instead of hand-copying build/test/signoff steps here — see that file for what actually runs. | |
| name: ci | |
| on: | |
| push: | |
| branches: [main, dev, qa] | |
| pull_request: | |
| branches: [main, dev, qa] | |
| jobs: | |
| ci: | |
| uses: GetBusbar/busbar/.github/workflows/plugin-ci.yml@dev | |
| with: | |
| plugin_crate: busbar-auth-oidc-plugin | |
| plugin_kind: auth | |
| plugin_alias: oidc | |
| busbar_ref: ${{ github.base_ref || github.ref_name }} | |
| # same-branch: qa builds core qa, dev builds core dev (no stale main/tag). base_ref FIRST: | |
| # on a pull_request `github.ref_name` is '<number>/merge', not a branch name, so core could | |
| # not resolve it and every PR silently fell back to busbar@dev instead of the branch this PR | |
| # actually targets. | |
| service: none |