Fix CVE–2024–37890 #2
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: 'Dependabot Automerge - Action' | |
on: | |
pull_request: | |
types: | |
- opened | |
# Set the access for individual scopes, or use permissions: write-all | |
permissions: | |
pull-requests: write | |
issues: write | |
repository-projects: write | |
jobs: | |
automerge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Automerge PR | |
uses: pascalgn/automerge-action@v0.14.0 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |