Switch auto approve workflow to use DEV_PUSH_TOKEN

Higher rate limit
This commit is contained in:
Jordan Dominion
2023-07-03 20:42:55 -04:00
parent 4b2ad9335f
commit 7013f05e4b
@@ -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