Skip to content

Commit 92e97f4

Browse files
committed
1 parent 4a0616a commit 92e97f4

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Auto-merge Dependabot PRs
2+
on:
3+
pull_request:
4+
# Allows you to run this workflow manually from the Actions tab
5+
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
dependabot:
14+
runs-on: ubuntu-latest
15+
if: github.actor == 'dependabot[bot]'
16+
steps:
17+
- uses: yasslab/dependabot_auto_merge@main
18+
with:
19+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)