-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Enable auto merge - Always add `anelson` as a reviewer - Do updates daily instead of weekly
- Loading branch information
Showing
1 changed file
with
29 additions
and
5 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,15 +1,39 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "cargo" | ||
# Look for `Cargo.toml` and `Cargo.lock` in the root directory | ||
directory: "/" | ||
# Check for updates every Monday | ||
schedule: | ||
interval: "weekly" | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
|
||
# Add reviewer | ||
reviewers: | ||
- "anelson" | ||
|
||
# Enable auto-merge | ||
auto-merge: true | ||
|
||
# Configuration for auto-merge behavior | ||
auto-merge-constraints: | ||
# Only merge if all checks pass | ||
required-checks: true | ||
|
||
# Allow manual modifications | ||
allow-manual-rebasing: true | ||
|
||
# Pull request settings | ||
pull-request-branch-name: | ||
separator: "-" | ||
|
||
# Version update settings | ||
versioning-strategy: "auto" | ||
|
||
# Commit message settings | ||
commit-message: | ||
prefix: "chore" | ||
include: "scope" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
# Check for updates every Monday | ||
schedule: | ||
interval: "weekly" | ||
interval: "daily" | ||
open-pull-requests-limit: 10 |