summaryrefslogtreecommitdiffstats
path: root/.github/workflows/merge-dependabot.yml
blob: c73be6a7601513dacb9ffaf40ca5154897002357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Auto-merge Dependabot PRs
on:
  schedule:
    - cron: "0 * * * *"
jobs:
  auto_merge:
    name: Auto-merge Dependabot PRs
    runs-on: ubuntu-latest
    steps:
      - uses: koj-co/dependabot-pr-action@master
        with:
          token: ${{ secrets.DEPENDABOT_GITHUB_API_TOKEN }}
          merge-minor: true
          merge-patch: true