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.
2 parents c27e756 + e019efa commit c351feeCopy full SHA for c351fee
.github/dependabot.yml
@@ -13,4 +13,4 @@ updates:
13
- package-ecosystem: "gitsubmodule"
14
directory: "/"
15
schedule:
16
- interval: "weekly"
+ interval: "daily"
.github/workflows/Dependabot.yml
@@ -1,13 +1,15 @@
1
-
2
name: Dependabot update commit
3
4
on:
5
pull_request:
6
paths:
7
- 'Submodule/**'
8
9
-jobs:
10
+permissions:
+ contents: write
+ pull-requests: write
11
+
12
+jobs:
Sync:
if: github.actor == 'dependabot[bot]'
strategy:
@@ -31,3 +33,10 @@ jobs:
31
33
- run: touch Submodule
32
34
- run: make install
35
- run: git push
36
+ - env:
37
+ PR_URL: ${{github.event.pull_request.html_url}}
38
+ GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
39
+ run: |
40
+ gh pr review --approve "$PR_URL"
41
+ gh pr merge --auto --merge "$PR_URL"
42
0 commit comments