Skip to content

Commit 58056a4

Browse files
authored
Fix dependabot ignore syntax
This commit addresses the error: The property '#/updates/0/ignore' of type object did not match the following type: array The property '#/updates/1/ignore' of type object did not match the following type: array
1 parent 18cda24 commit 58056a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ updates:
88
labels:
99
- "Update dependencies"
1010
ignore:
11-
dependency-name: "*"
12-
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
11+
- dependency-name: "*"
12+
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
1313
- package-ecosystem: "npm"
1414
directory: "/runner"
1515
schedule:
1616
interval: "weekly"
1717
day: "thursday" # Gives us a working day to merge this before our typical release
1818
ignore:
19-
dependency-name: "*"
20-
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
19+
- dependency-name: "*"
20+
update-types: ["version-update:semver-minor", "version-update:semver-patch"]

0 commit comments

Comments
 (0)