ops: dispatch final rc.1 candidate evidence matrix #1
Workflow file for this run
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: Temporary rc.1 final evidence dispatch | |
| on: | |
| push: | |
| branches: | |
| - ops/rc1-final-evidence-dispatch | |
| paths: | |
| - .github/workflows/temporary-rc1-evidence-dispatch.yml | |
| permissions: | |
| actions: write | |
| contents: write | |
| jobs: | |
| dispatch-and-clean: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0 | |
| - name: Dispatch exact-candidate pre-tag matrix | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| TARGET_REF: release/rc1-pretag-candidate | |
| run: | | |
| set -euo pipefail | |
| for workflow in \ | |
| ci.yml \ | |
| repro-baseline.yml \ | |
| native-backends-tier1.yml \ | |
| native-backends-tier1b.yml | |
| do | |
| gh api \ | |
| --method POST \ | |
| "repos/${GITHUB_REPOSITORY}/actions/workflows/${workflow}/dispatches" \ | |
| -f ref="${TARGET_REF}" | |
| done | |
| - name: Delete temporary orchestration branch | |
| if: always() | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| set -euo pipefail | |
| git push origin --delete ops/rc1-final-evidence-dispatch |