[dependabot] Ignore all fixture directories
Seems like we can specify a wildcard dependency name to ignore all dependencies from being updated. As I understand it dependabot will still run monthly but no PRs will be generated. ghstack-source-id: 64b76bd532663cdc4db10ba6299e791b5908d5b1 Pull Request resolved: https://github.com/facebook/react/pull/31074
Lauren Tan committed
Sep 26, 2024 at 10:22 UTC
b90e440231d3c18a3d9ebbd6a74555e82a16f666
1 file changed
+5
-92
.github/dependabot.yml
+5
-92
@@ -1,97 +1,10 @@
1
version: 2
2
updates:
3
- package-ecosystem: "npm"
4
- directory: "/fixtures/art"
4
+ directories:
5
+ - "/fixtures/*"
6
schedule:
6
- interval: "weekly"
7
- open-pull-requests-limit: 0
8
- - package-ecosystem: "npm"
9
- directory: "/fixtures/attribute-behavior"
10
- schedule:
11
- interval: "weekly"
12
- open-pull-requests-limit: 0
13
- - package-ecosystem: "npm"
14
- directory: "/fixtures/concurrent"
15
- schedule:
16
- interval: "weekly"
17
- open-pull-requests-limit: 0
18
- - package-ecosystem: "npm"
19
- directory: "/fixtures/devtools"
20
- schedule:
21
- interval: "weekly"
22
- open-pull-requests-limit: 0
23
- - package-ecosystem: "npm"
24
- directory: "/fixtures/dom"
25
- schedule:
26
- interval: "weekly"
27
- open-pull-requests-limit: 0
28
- - package-ecosystem: "npm"
29
- directory: "/fixtures/eslint"
30
- schedule:
31
- interval: "weekly"
32
- open-pull-requests-limit: 0
33
- - package-ecosystem: "npm"
34
- directory: "/fixtures/expiration"
35
- schedule:
36
- interval: "weekly"
37
- open-pull-requests-limit: 0
38
- - package-ecosystem: "npm"
39
- directory: "/fixtures/fiber-debugger"
40
- schedule:
41
- interval: "weekly"
42
- open-pull-requests-limit: 0
43
- - package-ecosystem: "npm"
44
- directory: "/fixtures/fizz"
45
- schedule:
46
- interval: "weekly"
47
- open-pull-requests-limit: 0
48
- - package-ecosystem: "npm"
49
- directory: "/fixtures/fizz-ssr-browser"
50
- schedule:
51
- interval: "weekly"
52
- open-pull-requests-limit: 0
53
- - package-ecosystem: "npm"
54
- directory: "/fixtures/flight"
55
- schedule:
56
- interval: "weekly"
57
- open-pull-requests-limit: 0
58
- - package-ecosystem: "npm"
59
- directory: "/fixtures/flight-esm"
60
- schedule:
61
- interval: "weekly"
62
- open-pull-requests-limit: 0
63
- - package-ecosystem: "npm"
64
- directory: "/fixtures/legacy-jsx-runtimes"
65
- schedule:
66
- interval: "weekly"
67
- open-pull-requests-limit: 0
68
- - package-ecosystem: "npm"
69
- directory: "/fixtures/nesting"
70
- schedule:
71
- interval: "weekly"
72
- open-pull-requests-limit: 0
73
- - package-ecosystem: "npm"
74
- directory: "/fixtures/packaging"
75
- schedule:
76
- interval: "weekly"
77
- open-pull-requests-limit: 0
78
- - package-ecosystem: "npm"
79
- directory: "/fixtures/scheduler"
80
- schedule:
81
- interval: "weekly"
82
- open-pull-requests-limit: 0
83
- - package-ecosystem: "npm"
84
- directory: "/fixtures/ssr"
85
- schedule:
86
- interval: "weekly"
87
- open-pull-requests-limit: 0
88
- - package-ecosystem: "npm"
89
- directory: "/fixtures/ssr-2"
90
- schedule:
91
- interval: "weekly"
92
- open-pull-requests-limit: 0
93
- - package-ecosystem: "npm"
94
- directory: "/fixtures/stacks"
95
- schedule:
96
- interval: "weekly"
7
+ interval: "monthly"
8
open-pull-requests-limit: 0
9
+ ignore:
10
+ - dependency-name: "*"