File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
- # To get started with Dependabot version updates, you'll need to specify which
2
- # package ecosystems to update and where the package manifests are located.
3
- # Please see the documentation for all configuration options:
4
- # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
-
6
1
version : 2
7
2
updates :
8
3
- package-ecosystem : " npm" # See documentation for possible values
9
4
directory : " /" # Location of package manifests
10
5
schedule :
11
6
interval : " weekly"
7
+ open-pull-requests-limit : 5
12
8
ignore :
13
9
# For all packages, ignore all patch updates
14
10
- dependency-name : " *"
Original file line number Diff line number Diff line change 20
20
node-version : ${{ matrix.node-version }}
21
21
- run : npm install
22
22
- run : npm test
23
+
24
+ automerge :
25
+ name : Dependabot Auto-Merge
26
+ needs : test
27
+ runs-on : ubuntu-latest
28
+ permissions :
29
+ pull-requests : write
30
+ contents : write
31
+ steps :
32
+ - uses : fastify/github-action-merge-dependabot@v3
33
+ with :
34
+ github-token : ${{ github.token }}
35
+ target : minor
You can’t perform that action at this time.
0 commit comments