From bfbcee82c04d854a2b0004b6af86f92057037b93 Mon Sep 17 00:00:00 2001 From: Patel230 Date: Mon, 8 Jun 2026 02:08:42 +0530 Subject: [PATCH] chore: remove Dependabot configuration Stop automated dependency-bump PRs by removing .github/dependabot.yml. Existing Dependabot PRs were closed alongside this change. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/dependabot.yml | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 8d6aa019..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,41 +0,0 @@ -# Dependabot configuration for the hawk repo. -# Keeps Go module dependencies and GitHub Actions up to date. -# Minor/patch updates are grouped to minimize PR noise. -version: 2 - -updates: - # --------------------------------------------------------------------------- - # Go modules. - # --------------------------------------------------------------------------- - - package-ecosystem: "gomod" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - open-pull-requests-limit: 10 - commit-message: - prefix: "build" - include: "scope" - groups: - gomod-minor-patch: - update-types: - - "minor" - - "patch" - - # --------------------------------------------------------------------------- - # GitHub Actions used by the workflows. - # --------------------------------------------------------------------------- - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - open-pull-requests-limit: 10 - commit-message: - prefix: "ci" - include: "scope" - groups: - actions-minor-patch: - update-types: - - "minor" - - "patch"