test(locking): e2e coverage for run-scoped object locking, each leg p… #979
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
| name: Release | |
| on: | |
| push: | |
| branches: [main, beta, development] | |
| # Lets a human force a release without pushing — the shared workflow already | |
| # expects this: its skip guard is written `github.event_name != 'push' || …` | |
| # precisely so a dispatch is "deliberately never skipped … including of a | |
| # commit this guard would refuse". 18 of the 21 fleet apps already declare it; | |
| # this repo was one of the three that did not, so the only way to trigger a | |
| # release here was to push. | |
| workflow_dispatch: | |
| jobs: | |
| unstable: | |
| if: github.ref == 'refs/heads/development' | |
| uses: ConductionNL/.github/.github/workflows/release.yml@main | |
| with: | |
| release-type: unstable | |
| app-name: openregister | |
| verify-vendor-deps: true | |
| vendor-check-paths: 'openai-php/client/src,theodo-group/llphant/src' | |
| secrets: inherit | |
| beta: | |
| if: github.ref == 'refs/heads/beta' | |
| uses: ConductionNL/.github/.github/workflows/release.yml@main | |
| with: | |
| release-type: beta | |
| app-name: openregister | |
| verify-vendor-deps: true | |
| vendor-check-paths: 'openai-php/client/src,theodo-group/llphant/src' | |
| secrets: inherit | |
| stable: | |
| if: github.ref == 'refs/heads/main' | |
| uses: ConductionNL/.github/.github/workflows/release.yml@main | |
| with: | |
| release-type: stable | |
| app-name: openregister | |
| verify-vendor-deps: true | |
| vendor-check-paths: 'openai-php/client/src,theodo-group/llphant/src' | |
| secrets: inherit | |