From bccda0ec248420dca57755c90c6f1b3ec0072a2e Mon Sep 17 00:00:00 2001 From: Will Pfleger Date: Thu, 14 May 2026 17:02:24 -0400 Subject: [PATCH] chore: remove Dependabot config (migrated to Renovate) Dependency management now handled by centralized Renovate runner in github-config. Per-repo dependabot.yml and automerge workflow are no longer needed. --- .github/dependabot.yml | 38 ---------------------- .github/workflows/dependabot-automerge.yml | 38 ---------------------- 2 files changed, 76 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/dependabot-automerge.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 6d15ee0..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,38 +0,0 @@ -version: 2 - -updates: - - package-ecosystem: "uv" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - time: "00:00" - timezone: "America/New_York" - labels: - - "dependencies" - commit-message: - prefix: "chore" - include: "scope" - groups: - minor-patch: - update-types: - - "minor" - - "patch" - - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - time: "00:00" - timezone: "America/New_York" - labels: - - "dependencies" - commit-message: - prefix: "chore" - include: "scope" - groups: - minor-patch: - update-types: - - "minor" - - "patch" diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml deleted file mode 100644 index 4701d70..0000000 --- a/.github/workflows/dependabot-automerge.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Dependabot Auto-merge - -on: - pull_request: - types: [opened, synchronize, reopened] - -permissions: - contents: write - pull-requests: write - issues: write - -jobs: - auto-merge: - runs-on: ubuntu-latest - if: github.actor == 'dependabot[bot]' - - steps: - - name: Ensure dependencies label exists - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: gh label create dependencies --description "Dependency updates" --color 0075ca 2>/dev/null || true - - - name: Fetch Dependabot metadata - id: meta - uses: dependabot/fetch-metadata@v3 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Approve and auto-merge patch/minor updates - if: >- - steps.meta.outputs.update-type == 'version-update:semver-patch' || - steps.meta.outputs.update-type == 'version-update:semver-minor' - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PR_URL: ${{ github.event.pull_request.html_url }} - run: | - gh pr review --approve "$PR_URL" - gh pr merge --auto --squash "$PR_URL"