rusty-commit 1.0.27

Rust-powered AI commit message generator - Write impressive commits in seconds
Documentation
# Please see the documentation for all configuration options:
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
  # GitHub Actions updates
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "monday"
      time: "09:00"
      timezone: "Asia/Hong_Kong"
    # Group related updates together
    groups:
      github-actions:
        patterns:
          - "*"
        update-types:
          - "minor"
          - "patch"
    labels:
      - "dependencies"
      - "github-actions"
    target-branch: "main"

  # Rust/Cargo updates
  - package-ecosystem: "cargo"
    directory: "/"
    schedule:
      interval: "weekly"
      day: "monday"
      time: "09:00"
      timezone: "Asia/Hong_Kong"
    # Group related updates to reduce PR noise
    groups:
      # Production dependencies - minor/patch updates
      cargo-production:
        dependency-type: "production"
        update-types:
          - "minor"
          - "patch"
        exclude-patterns:
          - "tokio*"
          - "clap*"
          - "reqwest*"
      # Major updates - separate PRs for review
      cargo-major:
        dependency-type: "production"
        update-types:
          - "major"
    labels:
      - "dependencies"
      - "rust"
    target-branch: "main"
    # Allow up to 10 open PRs (to avoid overwhelming)
    open-pull-requests-limit: 10
    # Auto-rebase when base branch changes
    rebase-strategy: "auto"
    # Versioning strategy for Cargo
    versioning-strategy: "lockfile-only"