From 9e024c4b2e0154446397025e46076ca552966936 Mon Sep 17 00:00:00 2001 From: Qbandev Date: Thu, 28 Aug 2025 11:12:21 +0200 Subject: [PATCH] fix: stable sync secret --- .github/workflows/stable-sync.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stable-sync.yml b/.github/workflows/stable-sync.yml index 6dc846e3..9be9ddfe 100644 --- a/.github/workflows/stable-sync.yml +++ b/.github/workflows/stable-sync.yml @@ -46,6 +46,10 @@ on: type: string description: 'The version of github-tools to use. Defaults to main.' default: ${{ github.action_ref }} + secrets: + github-token: + description: 'GitHub token for creating pull requests' + required: true jobs: stable-sync: @@ -128,7 +132,7 @@ jobs: - name: Create Pull Request if: steps.check-pr.outputs.result != 'true' env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.github-token }} BRANCH_NAME: stable-main-${{ inputs.semver-version }} VERSION: ${{ inputs.semver-version }} run: |