Skip to content

Add action to automatically merge Dependabot PRs #1

Add action to automatically merge Dependabot PRs

Add action to automatically merge Dependabot PRs #1

# This workflow automatically merges dependabot PRs
name: Automerge Dependabot PRs
on:
pull_request:
jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
github-token: ${{ secrets.GH_TOKEN }}