From ff47f7c02afe6795bd4a540ef9bedec8ca83c57a Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Fri, 13 Oct 2023 21:54:15 -0600 Subject: [PATCH] fix: secrets cannot start with `GITHUB_` --- .github/workflows/automation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/automation.yml b/.github/workflows/automation.yml index 2f5828d..cc0c7f3 100644 --- a/.github/workflows/automation.yml +++ b/.github/workflows/automation.yml @@ -19,4 +19,4 @@ jobs: dirtyLabel: 'merge conflict' commentOnDirty: 'This pull request has merge conflicts. Please resolve the conflicts so the PR can be successfully reviewed and merged.' commentOnClean: "Conflicts have been resolved. A maintainer will review the pull request shortly." - repoToken: "${{ secrets.GITHUB_TOKEN }}" + repoToken: "${{ secrets.GH_TOKEN }}"