ci: make mark-stable robust for workflow_run

- fetch workflow_run runs without head_sha filter
- match by workflow name and head_sha in jq
- keep tagging logic and permissions unchanged

https://chatgpt.com/share/693aa4a6-7460-800f-ba47-cfc15b1b2236
This commit is contained in:
Kevin Veen-Birkenbach
2025-12-11 12:46:42 +01:00
parent f4385807f1
commit 52cfbebba4

View File

@@ -14,23 +14,22 @@ on:
jobs: jobs:
mark-stable: mark-stable:
# Only run if the triggering workflow succeeded AND it ran on main
if: > if: >
github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.conclusion == 'success' &&
github.event.workflow_run.head_branch == 'main' github.event.workflow_run.head_branch == 'main'
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: write # required to push tags contents: write
actions: read # required to query workflow runs via API actions: read
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
fetch-depth: 0 # needed for tag operations fetch-depth: 0
- name: Install jq and gh (if needed) - name: Install jq and gh
run: | run: |
sudo apt-get update -y sudo apt-get update -y
sudo apt-get install -y jq gh || true sudo apt-get install -y jq gh || true
@@ -44,8 +43,9 @@ jobs:
run: | run: |
set -euo pipefail set -euo pipefail
echo "Checking workflow results for commit: $SHA" echo "Commit: $SHA"
echo "Repository: $REPO" echo "Repository: $REPO"
echo "Fetching workflow runs…"
required_workflows=( required_workflows=(
"Test Units" "Test Units"
@@ -56,37 +56,32 @@ jobs:
"Test Virgin Root" "Test Virgin Root"
) )
echo "Fetching workflow runs via GitHub API…" # FIX: cannot filter by head_sha — GitHub API bug!
json=$(gh api /repos/"$REPO"/actions/runs -F per_page=100 -F event=workflow_run)
# FIXED: correct absolute API path
json=$(gh api \
/repos/"$REPO"/actions/runs \
-F head_sha="$SHA" \
-F per_page=100)
for wf in "${required_workflows[@]}"; do for wf in "${required_workflows[@]}"; do
conclusion=$(printf '%s\n' "$json" | jq -r --arg name "$wf" ' conclusion=$(printf '%s\n' "$json" | jq -r --arg name "$wf" --arg sha "$SHA" '
.workflow_runs[] .workflow_runs[]
| select(.name == $name) | select(.name == $name and .head_sha == $sha)
| .conclusion | .conclusion
' | head -n1) ' | head -n1)
if [[ -z "$conclusion" || "$conclusion" == "null" ]]; then if [[ -z "$conclusion" || "$conclusion" == "null" ]]; then
echo "❌ Workflow '$wf' has no run for this commit yet. Not tagging." echo "❌ Workflow '$wf' has no run for this commit yet."
exit 0 exit 0
fi fi
if [[ "$conclusion" != "success" ]]; then if [[ "$conclusion" != "success" ]]; then
echo "❌ Workflow '$wf' did not succeed (status: $conclusion). Not tagging." echo "❌ Workflow '$wf' did not succeed (status: $conclusion)."
exit 0 exit 0
fi fi
echo "✔ Workflow '$wf' succeeded." echo "✔ Workflow '$wf' succeeded."
done done
echo "🎉 All required workflows succeeded for commit $SHA — marking as stable." echo "🎉 All tests succeeded — this commit is STABLE."
- name: Move 'stable' tag to this commit - name: Move 'stable' tag
env: env:
SHA: ${{ github.event.workflow_run.head_sha }} SHA: ${{ github.event.workflow_run.head_sha }}
run: | run: |
@@ -95,18 +90,12 @@ jobs:
git config user.name "github-actions[bot]" git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com" git config user.email "github-actions[bot]@users.noreply.github.com"
echo "Updating 'stable' tag → commit $SHA" echo "Tagging commit $SHA as stable…"
# remove old tag locally git tag -d stable 2>/dev/null || true
if git rev-parse stable >/dev/null 2>&1; then
git tag -d stable || true
fi
# delete remote tag if exists
git push origin :refs/tags/stable || true git push origin :refs/tags/stable || true
# create new tag
git tag stable "$SHA" git tag stable "$SHA"
git push origin stable git push origin stable
echo "✅ Stable tag updated successfully." echo "✅ Done."