Files
starship/.github/workflows/merge-dependabot.yml
T
2021-04-29 18:40:03 -04:00

15 lines
338 B
YAML

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