File tree 2 files changed +14
-5
lines changed
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 19
19
node-version : ${{ matrix.node-version }}
20
20
- run : npm install
21
21
- run : npm test
22
+
23
+ automerge :
24
+ name : Dependabot Auto-Merge
25
+ needs : test
26
+ runs-on : ubuntu-latest
27
+ permissions :
28
+ pull-requests : write
29
+ contents : write
30
+ steps :
31
+ - uses : fastify/github-action-merge-dependabot@v3
32
+ with :
33
+ github-token : ${{ github.token }}
34
+ target : minor
You can’t perform that action at this time.
0 commit comments