-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve dependabot config and commit the lockfile (#120)
* improve dependabot config and commit the lockfile * fixup * fixup * enable dependabot auto-merging --------- Co-authored-by: daniel.eades <[email protected]>
- Loading branch information
1 parent
3615030
commit 74ef0b2
Showing
4 changed files
with
3,723 additions
and
12 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 |
---|---|---|
@@ -1,12 +1,45 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: cargo | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
ignore: | ||
- dependency-name: dtolnay/rust-toolchain | ||
# bump major and minor updates as soon as available | ||
- package-ecosystem: cargo | ||
target-branch: main # see https://github.com/dependabot/dependabot-core/issues/1778#issuecomment-1988140219 | ||
directory: / | ||
schedule: | ||
interval: daily | ||
commit-message: | ||
prefix: chore | ||
include: scope | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: | ||
- "version-update:semver-patch" | ||
|
||
# bundle patch updates together on a monthly basis | ||
# (note that security updates will be bumped as soon as available) | ||
- package-ecosystem: cargo | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
commit-message: | ||
prefix: chore | ||
include: scope | ||
groups: | ||
patch-updates: | ||
update-types: | ||
- patch | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: | ||
- "version-update:semver-minor" | ||
- "version-update:semver-major" | ||
|
||
# bump actions as soon as available | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: daily | ||
commit-message: | ||
prefix: chore | ||
include: scope | ||
ignore: | ||
- dependency-name: dtolnay/rust-toolchain |
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
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 |
---|---|---|
|
@@ -2,6 +2,5 @@ | |
|
||
/target | ||
**/*.rs.bk | ||
Cargo.lock | ||
|
||
/docs/book/book |
Oops, something went wrong.