From 7013f05e4b290651173e8b98fc065b64728db350 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 3 Jul 2023 20:42:55 -0400 Subject: [PATCH] Switch auto approve workflow to use DEV_PUSH_TOKEN Higher rate limit --- .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 cd499fffde..10bbf9e082 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.GITHUB_TOKEN }}' \ + --header 'authorization: Bearer ${{ secrets.DEV_PUSH_TOKEN }}' \ --header 'content-type: application/json' \ -d '{"event":"APPROVE"}' \ --fail