Maintain actions

This commit is contained in:
Stephan Schnabel 2022-09-02 09:13:08 +02:00
parent 67a1b52362
commit ba31b4755b
Signed by: stephan.schnabel
GPG key ID: E07AF5BA239FE543
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 }}