From f8ce4dbf1497cda63aa027b427efa922885932e6 Mon Sep 17 00:00:00 2001 From: KaifAhmad1 Date: Wed, 3 Dec 2025 11:58:41 +0530 Subject: [PATCH] chore: update Dependabot configuration - Set weekly schedule for Python dependencies - Set monthly schedule for GitHub Actions - Disable PR creation (monitoring only) --- .github/dependabot.yml | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 26e37d1c..d86d0776 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,19 +7,11 @@ updates: interval: "weekly" day: "monday" time: "09:00" - open-pull-requests-limit: 10 - reviewers: - - "Hawksight-AI" - labels: - - "dependencies" - - "python" - commit-message: - prefix: "deps" - include: "scope" + open-pull-requests-limit: 0 ignore: - # Ignore major version updates (handle manually) + # Ignore all updates (no PRs will be created) - dependency-name: "*" - update-types: ["version-update:semver-major"] + update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"] # GitHub Actions dependencies - package-ecosystem: "github-actions" @@ -28,8 +20,9 @@ updates: interval: "monthly" day: "monday" time: "09:00" - open-pull-requests-limit: 5 - labels: - - "dependencies" - - "github-actions" + open-pull-requests-limit: 0 + ignore: + # Ignore all updates (no PRs will be created) + - dependency-name: "*" + update-types: ["version-update:semver-major", "version-update:semver-minor", "version-update:semver-patch"]