diff --git a/.github/workflows/autoLabelPR.yaml b/.github/workflows/autoLabelPR.yaml index 73871ff7..11c3e67c 100644 --- a/.github/workflows/autoLabelPR.yaml +++ b/.github/workflows/autoLabelPR.yaml @@ -12,4 +12,4 @@ jobs: with: title-or-body: "both" parameters: '[ {"keywords": ["Important note", "Pull Request Type", "Related issue", "Dependent PR/issue", "Description", "Screenshots", "Testing", "Desktop", "Additional context"], "labels": ["PR: waiting for review"]}]' - github-token: "${{ secrets.GITHUB_TOKEN }}" + github-token: "${{ secrets.LABEL_TOKEN }}" diff --git a/.github/workflows/conflicts.yml b/.github/workflows/conflicts.yml index b2c64031..4a538f1f 100644 --- a/.github/workflows/conflicts.yml +++ b/.github/workflows/conflicts.yml @@ -17,6 +17,6 @@ jobs: with: dirtyLabel: "PR: merge conflicts / rebase needed" removeOnDirtyLabel: "PR: waiting for review" - repoToken: "${{ secrets.GITHUB_TOKEN }}" + repoToken: "${{ secrets.LABEL_TOKEN }}" commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request." commentOnClean: "Conflicts have been resolved. A maintainer will review the pull request shortly." diff --git a/.github/workflows/label-changes-requested.yml b/.github/workflows/label-changes-requested.yml index d842ab95..954ba257 100644 --- a/.github/workflows/label-changes-requested.yml +++ b/.github/workflows/label-changes-requested.yml @@ -16,4 +16,4 @@ jobs: changes-requested-label-name: "PR: changes requested" updated-pr-label-name: "PR: waiting for review" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.LABEL_TOKEN }}