mirror of
https://github.com/github/codeql-action.git
synced 2025-12-25 16:50:21 +08:00
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
21 lines
670 B
YAML
21 lines
670 B
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "thursday" # Gives us a working day to merge this before our typical release
|
|
labels:
|
|
- "Update dependencies"
|
|
ignore:
|
|
- 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"]
|