Skip to content

Commit c0aa2fc

Browse files
committed
fix(dependabot): replace ignored paths with exclude-paths
The `ignore` key has been deprecated in favor of `exclude-paths`. This change ensures compatibility with the latest Dependabot configuration options. See: https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#exclude-paths-
1 parent 437b35f commit c0aa2fc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/dependabot.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ updates:
99
labels:
1010
- "pip dependencies"
1111
versioning-strategy: increase
12-
ignore:
13-
- dependency-name: "docs/requirements.txt" # autogenerated by requirements.in
12+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#exclude-paths-
13+
exclude-paths:
14+
- "docs/requirements.txt" # autogenerated by requirements.in

0 commit comments

Comments
 (0)