summaryrefslogtreecommitdiffstats
path: root/.github/workflows/merge-dependabot.yml
blob: ad111bf7f06da16dea7c479aaf5aa26bc51ea550 (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@d020867c009553e279f0200b621459444828a9b0
        with:
          token: ${{ secrets.DEPENDABOT_GITHUB_API_TOKEN }}
          auto-merge: "minor"
          merge-method: "squash"