Revert "Switch auto approve workflow to use DEV_PUSH_TOKEN"

This reverts commit 7013f05e4b.

Wow. I'm dumb. It HAS to be this token for the actions bot to review it.
This commit is contained in:
Jordan Dominion
2023-07-04 18:20:09 -04:00
parent 554fb7a2f1
commit 25a616117b
@@ -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