From 2171381ae090885f2ab01c4ac42e5238b7d09e85 Mon Sep 17 00:00:00 2001 From: Nikolai Emil Damm Date: Tue, 26 May 2026 15:40:42 +0200 Subject: [PATCH] ci(update-copilot-skills): use App token so update PRs trigger CI Bump the reusable update-copilot-skills caller to v3.3.0 and set use-app-token: true (passing the org APP_PRIVATE_KEY secret). A PR opened with the default GITHUB_TOKEN does not trigger this repo's on: pull_request CI, so the daily skills-update PR landed permanently blocked on missing required checks; an App-minted token fires CI normally. --- .github/workflows/update-copilot-skills.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-copilot-skills.yaml b/.github/workflows/update-copilot-skills.yaml index f0a6b5a..f4cabd5 100644 --- a/.github/workflows/update-copilot-skills.yaml +++ b/.github/workflows/update-copilot-skills.yaml @@ -11,6 +11,12 @@ permissions: jobs: update: - uses: devantler-tech/reusable-workflows/.github/workflows/update-copilot-skills.yaml@41924797ae44fd5cc674e0914db55712da18e68f # v3.2.0 + uses: devantler-tech/reusable-workflows/.github/workflows/update-copilot-skills.yaml@cd0166067f2d85ae461b288b68d8d82e62221b82 # v3.3.0 with: dir: plugins + # Create the update PR with a GitHub App token so it triggers this + # repo's required CI (a PR opened with GITHUB_TOKEN does not), instead + # of landing permanently blocked on missing required checks. + use-app-token: true + secrets: + APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}