Skip to content

ops: dispatch final rc.1 candidate evidence matrix #1

ops: dispatch final rc.1 candidate evidence matrix

ops: dispatch final rc.1 candidate evidence matrix #1

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