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 2a0097e commit 44d2815Copy full SHA for 44d2815
.github/dependabot.yml
@@ -5,4 +5,7 @@ updates:
5
schedule:
6
interval: "weekly"
7
open-pull-requests-limit: 1
8
-
+ ignore:
9
+ # For all packages, ignore all patch updates
10
+ - dependency-name: "*"
11
+ update-types: ["version-update:semver-patch"]
.github/workflows/autmerge.yml
@@ -0,0 +1,17 @@
1
+name: Dependabot auto-merge
2
+on: pull_request
3
+
4
+permissions:
+ contents: write
+ pull-requests: write
+jobs:
+ dependabot:
+ runs-on: ubuntu-latest
+ if: ${{ github.actor == 'dependabot[bot]' }}
12
+ steps:
13
+ - name: Enable auto-merge for Dependabot PRs
14
+ run: gh pr merge --auto --merge "$PR_URL"
15
+ env:
16
+ PR_URL: ${{github.event.pull_request.html_url}}
17
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments