Skip to content

Commit 72b0136

Browse files
fix: correct dependabot ignore block indentation (#7)
The ignore stanza for the terraform package-ecosystem was incorrectly nested under the schedule/patterns key. This moves it to the correct scope as a direct property of the package-ecosystem entry, so that dependabot properly applies the semver-major ignore rules.
1 parent 89f8b2f commit 72b0136

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ updates:
2323
directory: "/"
2424
multi-ecosystem-group: "module"
2525
patterns: ["*"]
26-
ignore:
27-
- dependency-name: "hashicorp/*"
28-
update-types: ["version-update:semver-major"]
29-
- dependency-name: "microsoft/*"
30-
update-types: ["version-update:semver-major"]
31-
- dependency-name: "azure/*"
32-
update-types: ["version-update:semver-major"]
26+
ignore:
27+
- dependency-name: "hashicorp/*"
28+
update-types: ["version-update:semver-major"]
29+
- dependency-name: "microsoft/*"
30+
update-types: ["version-update:semver-major"]
31+
- dependency-name: "azure/*"
32+
update-types: ["version-update:semver-major"]

0 commit comments

Comments
 (0)