1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-27 12:49:02 +00:00
starship/.github/workflows/merge-dependabot.yml
Matan Kushner bd490bfbfd
ci: use Action for auto-merging Dependabot PRs
Switch to one that supports squash-merging.
2021-05-03 09:17:01 -04:00

15 lines
337 B
YAML

name: Auto-merge Dependabot PRs
on:
schedule:
- cron: "0 * * * *"
jobs:
auto_merge:
name: Auto-merge Dependabot PRs
runs-on: ubuntu-latest
steps:
- uses: akheron/dependabot-cron-action@0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
auto-merge: "minor"
merge-method: "squash"