You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
353 B
21 lines
353 B
2 years ago
|
name: Auto-merge dependabot
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
|
||
|
permissions:
|
||
|
pull-requests: write
|
||
|
|
||
|
jobs:
|
||
|
auto-merge:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
name: Checkout
|
||
|
|
||
|
- uses: ahmadnassri/action-dependabot-auto-merge@v2
|
||
|
name: Auto merge
|
||
|
with:
|
||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|