Update dependencies #95
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Auto-Approver | |
# Auto-approve on projects that have a "secret" variable saying this is okay. This lets us set up a restricted PR | |
# process on projects with just a single active developer. It prevents the developer from pushing directly to the | |
# main branch (so enforces a particular workflow that our other GitHub Actions expect). | |
on: | |
pull_request: | |
branches: | |
- v2 | |
- v3 | |
jobs: | |
approve-pr: | |
name: PR Auto-Approver | |
runs-on: ubuntu-latest | |
env: | |
AUTO_PR_APPROVAL: ${{ secrets.AUTO_PR_APPROVAL }} | |
steps: | |
- uses: hmarr/auto-approve-action@7782c7e2bdf62b4d79bdcded8332808fd2f179cd # v2.0.0 | |
if: env.AUTO_PR_APPROVAL != null | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" |