From 3ee5c44043623926d64394940738d38ed851e816 Mon Sep 17 00:00:00 2001 From: John Ajera Date: Fri, 14 Nov 2025 09:55:55 +1300 Subject: [PATCH] feat: enable auto image update configures auto image updater --- .github/dependabot.yml | 5 +++++ .github/workflows/auto-merge.yml | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 98cdd2c..5e1393f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,11 @@ updates: commit-message: prefix: "chore" include: "scope" + ignore: + # Block major version updates (e.g., 3.13 -> 3.14) + # Allow only patch and minor updates within 3.13.x + - dependency-name: "python" + update-types: ["version-update:semver-major"] # Monitor Python packages - package-ecosystem: "pip" diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 53a45d6..12a5e6f 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -22,7 +22,5 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} target: main merge-method: squash - merge-commit-message: pull-request-title - skip-if-mergeable: false - skip-if-checks-pending: true - skip-if-required-checks-pending: true + use-github-auto-merge: true + skip-verification: false