starship/.github/workflows/merge-dependabot.yml

15 lines
389 B
YAML
Raw Normal View History

2021-04-30 01:12:30 +02:00
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@88ece48110f8d170503a04dabd437bc30f18df4c
with:
token: ${{ secrets.DEPENDABOT_GITHUB_API_TOKEN }}
auto-merge: "minor"
merge-method: "squash"