Skip to content

Commit 07c6140

Browse files
committed
build(deps): only install packages after 7d seasoning
but explicitly allow packages we have a maintenance relationship with as we adopt versions of those as quickly as possible historically
1 parent 9def898 commit 07c6140

4 files changed

Lines changed: 26 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ updates:
99
# Check the npm registry for updates every day (weekdays)
1010
schedule:
1111
interval: 'daily'
12+
cooldown:
13+
default-days: 7
14+
semver-major-days: 7
15+
semver-minor-days: 7
16+
semver-patch-days: 7
1217
target-branch: dependency-updates
1318
labels:
1419
- 'dependencies'
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
yarnPath: ../../../.yarn/releases/yarn-4.14.1.cjs
2+
3+
npmMinimalAgeGate: 7d
4+
5+
# In case you must have a package version that would be disallowed
6+
# by the above npmMinimalAgeGate
7+
#npmPreapprovedPackages:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
yarnPath: ../../../../.yarn/releases/yarn-4.14.1.cjs
2+
3+
npmMinimalAgeGate: 7d
4+
5+
# In case you must have a package version that would be disallowed
6+
# by the above npmMinimalAgeGate
7+
#npmPreapprovedPackages:

.yarnrc.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ nodeLinker: node-modules
99
plugins:
1010
- checksum: 67ce9e30cf152af35d3dc292f915cb39220942f5f406211801da2b721d873857f8ea6d9c57893e1295133f5d128fa6388bf16a4610ef788f30e987e58f84db26
1111
path: .yarn/plugins/@yarnpkg/plugin-postinstall-dev.cjs
12-
spec: "https://raw.githubusercontent.com/sachinraja/yarn-plugin-postinstall-dev/main/bundles/%40yarnpkg/plugin-postinstall-dev.js"
12+
spec: 'https://raw.githubusercontent.com/sachinraja/yarn-plugin-postinstall-dev/main/bundles/%40yarnpkg/plugin-postinstall-dev.js'
1313

1414
yarnPath: .yarn/releases/yarn-4.14.1.cjs
15+
16+
npmMinimalAgeGate: 7d
17+
18+
# In case you must have a package version that would be disallowed
19+
# by the above npmMinimalAgeGate
20+
npmPreapprovedPackages:
21+
- 'firebase@12.12.1' # If adopting recent firebase-js-sdk, specify directly here
22+
- '@react-native-firebase/*'

0 commit comments

Comments
 (0)