Files
pkgmgr/.github/workflows/mark-stable.yml
Kevin Veen-Birkenbach 52cfbebba4 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
2025-12-11 12:46:42 +01:00

102 lines
2.8 KiB
YAML

name: Mark stable commit
on:
workflow_run:
workflows:
- Test Units
- Test Code Integration
- Test OS Containers
- Test End-To-End
- Test Virgin User
- Test Virgin Root
types:
- completed
jobs:
mark-stable:
if: >
github.event.workflow_run.conclusion == 'success' &&
github.event.workflow_run.head_branch == 'main'
runs-on: ubuntu-latest
permissions:
contents: write
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install jq and gh
run: |
sudo apt-get update -y
sudo apt-get install -y jq gh || true
- name: Check all required workflow results for this commit
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SHA: ${{ github.event.workflow_run.head_sha }}
REPO: ${{ github.event.workflow_run.repository.full_name }}
run: |
set -euo pipefail
echo "Commit: $SHA"
echo "Repository: $REPO"
echo "Fetching workflow runs…"
required_workflows=(
"Test Units"
"Test Code Integration"
"Test OS Containers"
"Test End-To-End"
"Test Virgin User"
"Test Virgin Root"
)
# FIX: cannot filter by head_sha — GitHub API bug!
json=$(gh api /repos/"$REPO"/actions/runs -F per_page=100 -F event=workflow_run)
for wf in "${required_workflows[@]}"; do
conclusion=$(printf '%s\n' "$json" | jq -r --arg name "$wf" --arg sha "$SHA" '
.workflow_runs[]
| select(.name == $name and .head_sha == $sha)
| .conclusion
' | head -n1)
if [[ -z "$conclusion" || "$conclusion" == "null" ]]; then
echo "❌ Workflow '$wf' has no run for this commit yet."
exit 0
fi
if [[ "$conclusion" != "success" ]]; then
echo "❌ Workflow '$wf' did not succeed (status: $conclusion)."
exit 0
fi
echo "✔ Workflow '$wf' succeeded."
done
echo "🎉 All tests succeeded — this commit is STABLE."
- name: Move 'stable' tag
env:
SHA: ${{ github.event.workflow_run.head_sha }}
run: |
set -euo pipefail
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
echo "Tagging commit $SHA as stable…"
git tag -d stable 2>/dev/null || true
git push origin :refs/tags/stable || true
git tag stable "$SHA"
git push origin stable
echo "✅ Done."