summaryrefslogtreecommitdiffstats
path: root/.github/workflows/merge-dependabot.yml
blob: e70b29d45bae4a1e390c1cd7bdb6135075d7aa6b (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: akheron/dependabot-cron-action@0.1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          auto-merge: "minor"
          merge-method: "squash"