ci: rename the cross-repo token secret to FEEDBACK_CLONE_TOKEN

Drop the stale slopsmith-era name now that everything lives under the
got-feedback org. Same secret, used for both the authenticated private
clones (GH_CLONE_TOKEN) and the VERSION-sync dispatch.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
byrongamatos
2026-06-17 00:57:25 +02:00
co-authored by Claude Opus 4.8
parent 28d9a7f30f
commit 0e7c428a9c
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -84,7 +84,7 @@ jobs:
env:
# PAT with read access to the private got-feedback repos so
# build-common.sh can clone core + the bundled plugins.
GH_CLONE_TOKEN: ${{ secrets.SLOPSMITH_SYNC_TOKEN }}
GH_CLONE_TOKEN: ${{ secrets.FEEDBACK_CLONE_TOKEN }}
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
@@ -277,7 +277,7 @@ jobs:
steps:
- name: Dispatch VERSION sync to slopsmith
env:
GH_TOKEN: ${{ secrets.SLOPSMITH_SYNC_TOKEN }}
GH_TOKEN: ${{ secrets.FEEDBACK_CLONE_TOKEN }}
REF_NAME: ${{ github.ref_name }}
run: |
version="${REF_NAME#v}"
@@ -286,7 +286,7 @@ jobs:
exit 0
fi
if [ -z "${GH_TOKEN:-}" ]; then
echo "::error::SLOPSMITH_SYNC_TOKEN secret is missing; cannot dispatch."
echo "::error::FEEDBACK_CLONE_TOKEN secret is missing; cannot dispatch."
exit 1
fi
gh api -X POST repos/got-feedback/feedback/dispatches \