From 2a7bdca15767910d0c53aba8799cba71449d1431 Mon Sep 17 00:00:00 2001 From: KaifAhmad1 Date: Wed, 3 Dec 2025 11:41:55 +0530 Subject: [PATCH] chore: improve Dependabot configuration - Add specific schedule times (Mondays at 9:00 AM) - Add ignore rule for major version updates - Improve configuration comments --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f7bf7849..26e37d1c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,9 +1,12 @@ version: 2 updates: + # Python dependencies (pip/pyproject.toml) - package-ecosystem: "pip" directory: "/" schedule: interval: "weekly" + day: "monday" + time: "09:00" open-pull-requests-limit: 10 reviewers: - "Hawksight-AI" @@ -13,11 +16,18 @@ updates: commit-message: prefix: "deps" include: "scope" + ignore: + # Ignore major version updates (handle manually) + - dependency-name: "*" + update-types: ["version-update:semver-major"] + # GitHub Actions dependencies - package-ecosystem: "github-actions" directory: "/" schedule: interval: "monthly" + day: "monday" + time: "09:00" open-pull-requests-limit: 5 labels: - "dependencies"