-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dependabot: Add config to ignore most versions
* Ignore patch for dependencies * Ignore minor and below for serde * Ignore minor and below for tokio Taken from lava-gitlab-runner.
- Loading branch information
1 parent
6142a4c
commit bb720b4
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
labels: | ||
- "dependencies" | ||
|
||
- package-ecosystem: "cargo" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
labels: | ||
- "dependencies" | ||
# Not yet supported. See <https://github.com/dependabot/dependabot-core/issues/4009> | ||
# versioning-strategy: "increase-if-necessary" | ||
ignore: | ||
- dependency-name: "tokio" | ||
update-types: | ||
- "version-update:semver-minor" | ||
- "version-update:semver-patch" | ||
- dependency-name: "serde" | ||
update-types: | ||
- "version-update:semver-minor" | ||
- "version-update:semver-patch" | ||
- dependency-name: "*" | ||
update-types: | ||
- "version-update:semver-patch" |