diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e669886..1058137 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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