From c4c2779976610212d502d8463bfdb9240293e910 Mon Sep 17 00:00:00 2001 From: Ryan Williams <3375653+ryankwilliams@users.noreply.github.com> Date: Tue, 2 Jun 2026 09:34:55 -0400 Subject: [PATCH] fix: invalid renovate config to bump tekton pipeline bundles (#16472) Signed-off-by: Ryan Williams <3375653+ryankwilliams@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 --- renovate.json | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index 1a787a45b9..31f3fa1bcd 100644 --- a/renovate.json +++ b/renovate.json @@ -1,11 +1,15 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "packageRules": [ - { - "description": "Update aap-ci tekton-catalog pipeline bundles", - "matchPackageNames": ["/^quay\\.io\\/aap-ci\\/tekton-catalog\\/pipeline\\//"], - "matchManagers": ["tekton"], - "automerge": true - } - ] -} + "enabledManagers": ["tekton"], + "tekton": { + "schedule": ["0 * * * *"], + "packageRules": [ + { + "description": "Update aap-ci tekton-catalog pipeline bundles", + "matchPackageNames": ["/^quay\\.io\\/aap-ci\\/tekton-catalog\\/pipeline\\/"], + "matchManagers": ["tekton"], + "automerge": true + } + ] + } +} \ No newline at end of file