summaryrefslogtreecommitdiffstats
path: root/.github/workflows/merge-dependabot.yml
blob: 4b1951abdcd4d33483a56c930f2f401ba95c0810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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