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:
66 directory : /
77 schedule :
88 interval : monthly
9+ cooldown :
10+ - semver-major-days : 5
11+ - semver-minor-days : 5
12+ - semver-patch-days : 5
13+
914 commit-message :
1015 prefix : meta
1116 open-pull-requests-limit : ${{secrets.OPEN_PR_LIMIT}}
@@ -14,6 +19,10 @@ updates:
1419 directory : /tools/eslint
1520 schedule :
1621 interval : monthly
22+ cooldown :
23+ - semver-major-days : 5
24+ - semver-minor-days : 5
25+ - semver-patch-days : 5
1726 commit-message :
1827 prefix : tools
1928 open-pull-requests-limit : ${{secrets.OPEN_PR_LIMIT}}
@@ -27,6 +36,10 @@ updates:
2736 directory : /tools/lint-md
2837 schedule :
2938 interval : monthly
39+ cooldown :
40+ - semver-major-days : 5
41+ - semver-minor-days : 5
42+ - semver-patch-days : 5
3043 commit-message :
3144 prefix : tools
3245 open-pull-requests-limit : ${{secrets.OPEN_PR_LIMIT}}
@@ -35,3 +48,20 @@ updates:
3548 applies-to : version-updates
3649 patterns :
3750 - ' *'
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 2121 - c-ares
2222 - cjs-module-lexer
2323 - corepack
24- - doc
2524 - googletest
2625 - gyp-next
2726 - histogram
@@ -119,22 +118,6 @@ jobs:
119118 run : |
120119 make corepack-update
121120 echo "NEW_VERSION=$(node deps/corepack/dist/corepack.js --version)" >> $GITHUB_ENV
122- - id : doc
123- subsystem : tools
124- label : tools
125- run : |
126- cd tools/doc
127- npm ci
128- NEW_VERSION=$(npm outdated --parseable | cut -d: -f4 | xargs)
129- if [ "$NEW_VERSION" != "" ]; then
130- echo "NEW_VERSION=new version" >> $GITHUB_ENV
131- rm -rf package-lock.json node_modules
132- # Include $NEW_VERSION to explicitly update the package.json
133- # entry for the dependency and also so that semver-major updates
134- # are not skipped.
135- npm install --ignore-scripts $NEW_VERSION
136- npm install --ignore-scripts
137- fi
138121 - id : googletest
139122 subsystem : deps
140123 label : dependencies, test
You can’t perform that action at this time.
0 commit comments