Skip to content

Commit

Permalink
feat(workflows): enable ghaction-dependabot-automerge
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneM committed Feb 2, 2023
1 parent 6584a8c commit 21930bf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Dependabot auto-approve
on: pull_request

permissions:
# Mandatory for both the auto-merge enabling and approval steps
pull-requests: write
# Mandatory for the auto-merge enabling step
contents: write

jobs:
dependabot:
runs-on: ubuntu-latest
steps:
- name: Automatically merge Dependabot PRs
uses: scalingo/ghaction-dependabot-automerge@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 21930bf

Please sign in to comment.