diff options
-rw-r--r-- | .github/workflows/label-bug-fix.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/label-bug-fix.yml b/.github/workflows/label-bug-fix.yml index fc5d2d154..fdee44e08 100644 --- a/.github/workflows/label-bug-fix.yml +++ b/.github/workflows/label-bug-fix.yml @@ -10,10 +10,9 @@ jobs: env: TITLE: ${{ github.event.pull_request.title }} LABEL: Bug Fix - Sooner than Very Soon - repoToken: "${{ secrets.GITHUB_TOKEN }}" uses: actions/github-script@v7 with: - github-token: ${{ env.repoToken }} + github-token: ${{ secrets.MY_PAT }} script: | if(process.env.TITLE.split(":")[0].toUpperCase().includes("FIX")){ github.rest.issues.addLabels({ |