Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 25 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,44 @@
version: 2

updates:
- package-ecosystem: "npm"
directories:
- "/**"
schedule:
interval: "weekly"
cooldown:
default-days: 7
semver-major-days: 7
semver-minor-days: 7
semver-patch-days: 7

Comment on lines +9 to +14

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The cooldown configuration option is not supported by GitHub Dependabot. Including this unsupported key will cause Dependabot to fail to parse the configuration file, preventing any dependency updates from running. You should remove this block.

labels:
- "dependencies"
- "automated"

commit-message:
prefix: "chore"
include: "scope"

groups:
minor-and-patch:
version-minor-and-patch:
applies-to: version-updates
patterns:
- "*"
update-types:
- "minor"
- "patch"
- minor
- patch

security-updates:
applies-to: security-updates
patterns:
- "*"
update-types:
- major
- minor
- patch

ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
update-types:
- "version-update:semver-major"
Loading