summaryrefslogtreecommitdiffstats
path: root/.github/workflows/auto-merge.yml
blob: 515de1670f391ae73287efb115e3ecf4cb911384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Dependabot

on: [pull_request]

jobs:
  auto_merge:
    name: Auto-merge Dependabot PRs
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ahmadnassri/action-dependabot-auto-merge@v2
        with:
          target: minor
          github-token: ${{ secrets.DEPENDABOT_GITHUB_API_TOKEN }}