Maintain actions (#71)

This commit is contained in:
Stephan Schnabel 2022-09-02 10:30:37 +02:00 committed by GitHub
parent 45dc3e361d
commit 9411c2b1b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 85 additions and 121 deletions

View file

@ -1,6 +1,6 @@
name: Dependabot
"on": pull_request_target
on: pull_request_target
jobs:
auto-merge:
@ -9,9 +9,9 @@ jobs:
steps:
- run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GIT_ACTION_TOKEN }}
- run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GIT_ACTION_TOKEN }}