We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9a321d0 + b7edce5 commit cf00ebbCopy full SHA for cf00ebb
.github/dependabot.yml
@@ -1,6 +1,6 @@
1
version: 2
2
updates:
3
- - directory: "/M1"
+ - directory: "/Farmtronics"
4
open-pull-requests-limit: 5
5
package-ecosystem: "nuget"
6
commit-message:
.github/workflows/dependabot-PR-merge.yml
@@ -0,0 +1,20 @@
+name: Merge Dependabot PRs
+on:
+ pull_request:
+ paths-ignore:
+ - ".github/workflows/**"
+
7
+permissions:
8
+ pull-requests: write
9
+ contents: write
10
+ checks: read
11
12
+jobs:
13
+ auto_merge:
14
+ runs-on: ubuntu-latest
15
+ if: ${{ github.actor == 'dependabot[bot]' }}
16
+ steps:
17
+ - run: gh pr merge -s "$PR_URL"
18
+ env:
19
+ PR_URL: ${{ github.event.pull_request.html_url }}
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments