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 ab5cbc6 commit 5d7d5d1Copy full SHA for 5d7d5d1
.github/dependabot.yaml
@@ -0,0 +1,10 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: npm
4
+ directory: /
5
+ schedule:
6
+ interval: monthly
7
+ - package-ecosystem: github-actions
8
9
10
.github/workflows/dependabot.yml
@@ -0,0 +1,16 @@
+name: Dependabot
+
+on: pull_request_target
+jobs:
+ auto_approve_pr:
+ name: Auto-approve PR
+ runs-on: ubuntu-latest
+ if: github.actor == 'dependabot[bot]'
11
+ steps:
12
+ - name: Approve a pull request
13
+ run: gh pr review --approve "$PR_URL"
14
+ env:
15
+ PR_URL: ${{ github.event.pull_request.html_url }}
16
+ GITHUB_TOKEN: ${{ github.token }}
0 commit comments