Skip to content

Commit

Permalink
Fix dependabot ignore syntax
Browse files Browse the repository at this point in the history
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
  • Loading branch information
cklin authored Sep 14, 2021
1 parent 18cda24 commit 58056a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ updates:
labels:
- "Update dependencies"
ignore:
dependency-name: "*"
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
- dependency-name: "*"
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
- package-ecosystem: "npm"
directory: "/runner"
schedule:
interval: "weekly"
day: "thursday" # Gives us a working day to merge this before our typical release
ignore:
dependency-name: "*"
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
- dependency-name: "*"
update-types: ["version-update:semver-minor", "version-update:semver-patch"]

0 comments on commit 58056a4

Please sign in to comment.