1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-29 06:30:52 +00:00

ci: auto-merge dependabot PRs on a schedule (#2669)

This commit is contained in:
Matan Kushner 2021-04-29 18:40:03 -04:00 committed by GitHub
parent abe830ffe7
commit ab735e880b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
.github/workflows/merge-dependabot.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: Auto-merge minor/patch
on:
schedule:
- cron: "0 * * * *"
jobs:
auto_merge:
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- uses: koj-co/dependabot-pr-action@v1
with:
token: ${{ secrets.DEPENDABOT_GITHUB_API_TOKEN }}
merge-minor: true
merge-patch: true