Skip to content

Commit a6ce883

Browse files
authored
ci: add ignore rule for playground/** dependabot updates (#115)
* ci: add ignore rule for playground/** dependabot updates * chore: format * chore: format
1 parent 2c59477 commit a6ce883

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ updates:
99
directory: /
1010
schedule:
1111
interval: weekly
12-
# Ignore all dependency manifests in the `playground` directory.
12+
# exclude-paths only prevents version updates, not security updates.
1313
exclude-paths:
1414
- playground/**
15+
16+
# Playground directories use intentionally outdated/vulnerable versions
17+
# to test the extension's diagnostics features.
18+
# `ignore` is required because `exclude-paths` does NOT prevent security updates.
19+
- package-ecosystem: npm
20+
directories:
21+
- playground/**
22+
schedule:
23+
interval: weekly
24+
ignore:
25+
- dependency-name: '*'

0 commit comments

Comments
 (0)