From 25a616117b63c0397ccfcff846d93035670145f5 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Tue, 4 Jul 2023 18:20:09 -0400 Subject: [PATCH] Revert "Switch auto approve workflow to use DEV_PUSH_TOKEN" This reverts commit 7013f05e4b290651173e8b98fc065b64728db350. Wow. I'm dumb. It HAS to be this token for the actions bot to review it. --- .github/workflows/auto-approve-dominions-prs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-approve-dominions-prs.yml b/.github/workflows/auto-approve-dominions-prs.yml index 10bbf9e082..cd499fffde 100644 --- a/.github/workflows/auto-approve-dominions-prs.yml +++ b/.github/workflows/auto-approve-dominions-prs.yml @@ -23,7 +23,7 @@ jobs: run: | curl --request POST \ --url https://api.github.com/repos/${{github.repository}}/pulls/${{github.event.number}}/reviews \ - --header 'authorization: Bearer ${{ secrets.DEV_PUSH_TOKEN }}' \ + --header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \ --header 'content-type: application/json' \ -d '{"event":"APPROVE"}' \ --fail