From ffa2be0ce2a9a01f4d239fdef685d7a9f16d64ac Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 6 Sep 2025 15:15:10 +0000 Subject: [PATCH] feat: Add dependabot.yml configuration Co-authored-by: sxyazi <17523360+sxyazi@users.noreply.github.com> --- .github/dependabot.yml | 71 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..e7665952 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,71 @@ +version: 2 +updates: + # Cargo dependencies + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 10 + reviewers: + - "sxyazi" + assignees: + - "sxyazi" + commit-message: + prefix: "deps" + include: "scope" + groups: + rust-dependencies: + patterns: + - "*" + exclude-patterns: + - "mlua" + - "ratatui" + - "syntect" + - "crossterm" + - "tokio" + update-types: + - "minor" + - "patch" + major-dependencies: + patterns: + - "mlua" + - "ratatui" + - "syntect" + - "crossterm" + - "tokio" + update-types: + - "major" + + # GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 5 + reviewers: + - "sxyazi" + assignees: + - "sxyazi" + commit-message: + prefix: "ci" + include: "scope" + + # Nix dependencies + - package-ecosystem: "nix" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "02:00" + open-pull-requests-limit: 5 + reviewers: + - "sxyazi" + assignees: + - "sxyazi" + commit-message: + prefix: "nix" + include: "scope" \ No newline at end of file