File tree Expand file tree Collapse file tree 2 files changed +30
-17
lines changed Expand file tree Collapse file tree 2 files changed +30
-17
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ updates:
6
6
directory : /
7
7
schedule :
8
8
interval : monthly
9
+ cooldown :
10
+ - semver-major-days : 5
11
+ - semver-minor-days : 5
12
+ - semver-patch-days : 5
13
+
9
14
commit-message :
10
15
prefix : meta
11
16
open-pull-requests-limit : ${{secrets.OPEN_PR_LIMIT}}
@@ -14,6 +19,10 @@ updates:
14
19
directory : /tools/eslint
15
20
schedule :
16
21
interval : monthly
22
+ cooldown :
23
+ - semver-major-days : 5
24
+ - semver-minor-days : 5
25
+ - semver-patch-days : 5
17
26
commit-message :
18
27
prefix : tools
19
28
open-pull-requests-limit : ${{secrets.OPEN_PR_LIMIT}}
@@ -27,6 +36,10 @@ updates:
27
36
directory : /tools/lint-md
28
37
schedule :
29
38
interval : monthly
39
+ cooldown :
40
+ - semver-major-days : 5
41
+ - semver-minor-days : 5
42
+ - semver-patch-days : 5
30
43
commit-message :
31
44
prefix : tools
32
45
open-pull-requests-limit : ${{secrets.OPEN_PR_LIMIT}}
@@ -35,3 +48,20 @@ updates:
35
48
applies-to : version-updates
36
49
patterns :
37
50
- ' *'
51
+
52
+ - package-ecosystem : npm
53
+ directory : /tools/doc
54
+ schedule :
55
+ interval : weekly
56
+ cooldown :
57
+ - semver-major-days : 5
58
+ - semver-minor-days : 5
59
+ - semver-patch-days : 5
60
+ commit-message :
61
+ prefix : tools
62
+ open-pull-requests-limit : ${{secrets.OPEN_PR_LIMIT}}
63
+ groups :
64
+ doc :
65
+ applies-to : version-updates
66
+ patterns :
67
+ - ' *'
Original file line number Diff line number Diff line change 21
21
- c-ares
22
22
- cjs-module-lexer
23
23
- corepack
24
- - doc
25
24
- googletest
26
25
- gyp-next
27
26
- histogram
@@ -118,22 +117,6 @@ jobs:
118
117
run : |
119
118
make corepack-update
120
119
echo "NEW_VERSION=$(node deps/corepack/dist/corepack.js --version)" >> $GITHUB_ENV
121
- - id : doc
122
- subsystem : tools
123
- label : tools
124
- run : |
125
- cd tools/doc
126
- npm ci
127
- NEW_VERSION=$(npm outdated --parseable | cut -d: -f4 | xargs)
128
- if [ "$NEW_VERSION" != "" ]; then
129
- echo "NEW_VERSION=new version" >> $GITHUB_ENV
130
- rm -rf package-lock.json node_modules
131
- # Include $NEW_VERSION to explicitly update the package.json
132
- # entry for the dependency and also so that semver-major updates
133
- # are not skipped.
134
- npm install --ignore-scripts $NEW_VERSION
135
- npm install --ignore-scripts
136
- fi
137
120
- id : googletest
138
121
subsystem : deps
139
122
label : dependencies, test
You can’t perform that action at this time.
0 commit comments