From 844cc16803c010635f2faa030ce882e8ccb3adbb Mon Sep 17 00:00:00 2001 From: Nolan Brubaker Date: Wed, 9 Dec 2020 15:08:39 -0500 Subject: [PATCH] Revert workflow access token changes (#3170) Per https://github.com/alex-page/github-project-automation-plus/issues/51, the `GITHUB_TOKEN` secret doesn't have the appropriate permissions to manage the issue workflows at a repo level. Reverting to the previous secret to get the workflows working again. Signed-off-by: Nolan Brubaker --- .github/workflows/milestoned-issues.yml | 2 +- .github/workflows/opened-issues-triage.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/milestoned-issues.yml b/.github/workflows/milestoned-issues.yml index c0e2bd8f7..47d818855 100644 --- a/.github/workflows/milestoned-issues.yml +++ b/.github/workflows/milestoned-issues.yml @@ -14,5 +14,5 @@ jobs: if: ${{ !github.event.issue.pull_request }} project: "${{ github.event.issue.milestone.title }}" column: "To Do" - repo-token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.GH_TOKEN }} diff --git a/.github/workflows/opened-issues-triage.yml b/.github/workflows/opened-issues-triage.yml index 8d5a3636e..f81443a3a 100644 --- a/.github/workflows/opened-issues-triage.yml +++ b/.github/workflows/opened-issues-triage.yml @@ -12,4 +12,4 @@ jobs: with: project: "Velero Support Board" column: "New" - repo-token: ${{ secrets.GITHUB_TOKEN }} + repo-token: ${{ secrets.GH_TOKEN }}