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 fde89d8 commit 40bfe7bCopy full SHA for 40bfe7b
.github/dependabot.yml
@@ -4,3 +4,8 @@ updates:
4
directory: "/"
5
schedule:
6
interval: "daily"
7
+
8
+ - package-ecosystem: "github-actions"
9
+ directory: "/"
10
+ schedule:
11
+ interval: "weekly"
.github/workflows/auto-merge.yml
@@ -0,0 +1,19 @@
1
+name: Dependabot Auto Merge
2
3
+on:
+ pull_request_target:
+ types: [labeled]
+jobs:
+ auto:
+ if: github.actor == 'dependabot[bot]'
+ runs-on: ubuntu-latest
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ token: ${{ secrets.GITHUB_TOKEN }}
15
+ - name: Auto approve pull request, then squash and merge
16
+ uses: ahmadnassri/action-dependabot-auto-merge@v2
17
18
+ target: minor
19
+ github-token: ${{ secrets.PAT_REPO_ADMIN }}
0 commit comments