Skip to content

Commit 61997bb

Browse files
Merge #1572
1572: Update dependabot changing ignore list to allow list r=brunoocasali a=bidoubiwa To avoid being spammed with none-critical dependencies updates suggested by dependabot, we are changing from `ignore` to `allow` in the dependabot file. Ensuring we only update the critical dependencies. ``` - dependency-name: cross-fetch ``` cross-fetch is kept as it is the only one that is builded with the package. Updates of this library ensure that the library is kept up to date with new versions of `node`. Co-authored-by: Charlotte Vermandel <[email protected]>
2 parents b2914f0 + 2f4f8ff commit 61997bb

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "github-actions"
4-
directory: "/"
3+
- package-ecosystem: 'github-actions'
4+
directory: '/'
55
schedule:
6-
interval: "monthly"
6+
interval: 'monthly'
77
labels:
88
- 'skip-changelog'
99
- 'dependencies'
1010
rebase-strategy: disabled
1111

1212
- package-ecosystem: npm
13-
directory: "/"
13+
directory: '/'
14+
allow:
15+
- dependency-name: cross-fetch
16+
1417
schedule:
15-
interval: "monthly"
16-
time: "04:00"
18+
interval: 'monthly'
19+
time: '04:00'
1720
open-pull-requests-limit: 10
1821
labels:
1922
- skip-changelog
2023
- dependencies
2124
versioning-strategy: increase
2225
rebase-strategy: disabled
23-
ignore:
24-
- dependency-name: "eslint*"
25-
- dependency-name: "babel-eslint"
26-
- dependency-name: "*prettier*"
27-
- dependency-name: "lint-staged"
28-
- dependency-name: "nodemon"
29-
- dependency-name: "*jest*"

0 commit comments

Comments
 (0)