Skip to content

Commit

Permalink
added dep auto merge workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsandeep committed Jul 23, 2023
1 parent 51687c5 commit 0d90c63
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dep-auto-merge.yml
@@ -0,0 +1,25 @@
name: 🤖 dep auto merge

on:
pull_request:
branches:
- dev
workflow_dispatch:

permissions:
pull-requests: write
issues: write
repository-projects: write

jobs:
automerge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.DEPENDABOT_PAT }}

- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
github-token: ${{ secrets.DEPENDABOT_PAT }}
target: all

0 comments on commit 0d90c63

Please sign in to comment.