Skip to content

Commit

Permalink
Added new workflow for dependabot PR auto-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ilcardella committed Oct 17, 2020
1 parent 351343f commit f8546df
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Dependabot auto-merge

on:
pull_request:

jobs:
auto-merge:
runs-on: ubuntu-latest
name: Dependabot auto-merge
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Auto-merge
uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
github-token: ${{ secrets.DEPENDABOT_TOKEN }}

0 comments on commit f8546df

Please sign in to comment.