AniwatchPlus/.github/workflows/auto-merge.yml

16 lines
333 B
YAML
Raw Normal View History

2020-10-22 19:51:31 +02:00
name: auto-merge
on:
pull_request_target:
2020-10-22 19:51:31 +02:00
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
2020-10-22 19:51:31 +02:00
steps:
2020-12-30 18:23:34 +01:00
- uses: actions/checkout@v2
2021-03-18 20:47:22 +01:00
- uses: ahmadnassri/action-dependabot-auto-merge@v2.3.1
2020-10-22 19:51:31 +02:00
with:
target: minor
github-token: ${{ secrets.PR_AUTO_MERGE }}