From d806e1fac4bf582d927c5b8d8269535eaeac104f Mon Sep 17 00:00:00 2001 From: cahirodoherty-learningpool Date: Thu, 8 Jan 2026 16:55:06 +0000 Subject: [PATCH] Fix: Making use of Personal Access Token in Release GHA to ensure other workflows are triggered accordingly (#3746) --- .github/workflows/releases.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 46ead9fc3..180a84f02 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -12,6 +12,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + token: ${{ secrets.RELEASES_TOKEN }} - name: Setup Node.js uses: actions/setup-node@v4 with: @@ -20,6 +21,6 @@ jobs: run: npm ci - name: Release env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.RELEASES_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: npx semantic-release