Skip to content

Commit 3c0f724

Browse files
authored
Only update first party dependencies (#2346)
npm gets compromised every other day. We don't really benefit from updating to every little version of ESLint (etc.) but the risks are distinctly non-zero.
1 parent 729fbbc commit 3c0f724

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ updates:
33
- package-ecosystem: "npm"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
7-
ignore:
8-
# Prettier updates that result in style changes result in cascading format validation
9-
# errors until all pull requests get rebased. It's not worth the effort to follow
10-
# every update. We'll do this manually when there's some change we want.
11-
- dependency-name: prettier
6+
interval: "daily"
7+
assignees:
8+
- "GarboMuffin"
9+
allow:
10+
# Only try to automatically bump first-party dependencies.
11+
- dependency-name: "@turbowarp/*"

0 commit comments

Comments
 (0)