We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c0241d commit f2894a4Copy full SHA for f2894a4
.github/workflows/dependabot.yml
@@ -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