From ba457849ca132b989db0b7ea0a0471f25881720b Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Sun, 2 Aug 2026 23:07:53 +0000 Subject: [PATCH] fix: align config.json with prod renovate module Ajoute les tweaks manquants du modules/renovate/main.tf (tf-depl-kubernetes): - semanticCommits: "enabled" - binarySource: "install" - printConfig: false - packageRules: gitea-actions -> semanticCommitType "ci" Pas d'autodiscover/autodiscoverFilter: le workflow renovate.yaml passe deja RENOVATE_REPOSITORIES=github.repository pour scanner uniquement le repo qui trigger la pipeline. --- config.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.json b/config.json index 892a3d1..f6e9984 100644 --- a/config.json +++ b/config.json @@ -10,11 +10,14 @@ "requireConfig": "optional", "onboarding": false, "rebaseWhen": "behind-base-branch", + "semanticCommits": "enabled", "minimumReleaseAge": "2 days", "minimumReleaseAgeBehaviour": "timestamp-optional", "branchConcurrentLimit": 0, "prConcurrentLimit": 0, "prHourlyLimit": 0, + "binarySource": "install", + "printConfig": false, "gitlabci": { "enabled": false }, @@ -30,5 +33,11 @@ "matchHost": "api.github.com", "token": "${RENOVATE_GITHUB_TOKEN}" } + ], + "packageRules": [ + { + "matchManagers": ["gitea-actions"], + "semanticCommitType": "ci" + } ] } \ No newline at end of file