From 2a92020e3bf3a49d9c72d2d1567e412dcfec282b Mon Sep 17 00:00:00 2001 From: vickydotbat Date: Sat, 20 Jun 2026 20:24:05 +0200 Subject: [PATCH] bot token --- .gitea/workflows/sync-wrappers.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/sync-wrappers.yml b/.gitea/workflows/sync-wrappers.yml index a843848..c4c9910 100644 --- a/.gitea/workflows/sync-wrappers.yml +++ b/.gitea/workflows/sync-wrappers.yml @@ -1,7 +1,7 @@ # Auto-PR canonical wrapper updates to consumer repos when wrappers/ changes on # main. Maintenance automation (not artifact publishing), so it is allowed on a -# main push under the D7 trigger standard. Requires WRAPPER_SYNC_TOKEN: a bot -# user's token with content+PR write to the consumer repos (never committed). +# main push under the D7 trigger standard. Requires BOT_TOKEN: the gitea-bot +# org token (content+PR write to the consumer repos; never committed). name: sync-wrappers on: @@ -19,12 +19,13 @@ jobs: - name: Open sync PRs to consumers env: - TOKEN: ${{ secrets.WRAPPER_SYNC_TOKEN }} + TOKEN: ${{ secrets.BOT_TOKEN }} SERVER: ${{ github.server_url }} SRC_SHA: ${{ github.sha }} run: | nix develop --command bash -c ' set -euo pipefail + [ -n "${TOKEN}" ] || { echo "::error::BOT_TOKEN secret is empty — set the gitea-bot org token"; exit 1; } host="$(echo "$SERVER" | sed -E "s#https?://##")" branch="chore/sync-wrappers-$(echo "$SRC_SHA" | cut -c1-12)" grep -vE "^\s*#|^\s*$" wrappers/consumers.txt | while read -r target; do @@ -40,10 +41,19 @@ jobs: git add crucible.sh crucible.ps1 git commit -m "chore: sync crucible wrappers from sow-tools@${SRC_SHA}" git push -f origin "$branch" - curl -fsS -X POST \ + # Capture HTTP status: 201=created, 422=PR already open for this + # branch (fine, the force-push above refreshed it). Anything else + # (401/404/...) is a real failure — fail loud, do not swallow it. + resp="$(mktemp)" + code="$(curl -sS -o "$resp" -w "%{http_code}" -X POST \ -H "Authorization: token ${TOKEN}" -H "Content-Type: application/json" \ "${SERVER}/api/v1/repos/${target}/pulls" \ - -d "{\"head\":\"${branch}\",\"base\":\"main\",\"title\":\"chore: sync crucible wrappers from sow-tools\"}" || true + -d "{\"head\":\"${branch}\",\"base\":\"main\",\"title\":\"chore: sync crucible wrappers from sow-tools\"}")" + case "$code" in + 201) echo "opened sync PR for $target" ;; + 422) echo "sync PR already open for $target; refreshed its branch" ;; + *) echo "::error::PR create failed for $target (HTTP $code)"; cat "$resp"; exit 1 ;; + esac ) rm -rf "$work" done