2023-10-30 04:07:33 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
2026-02-12 15:28:46 +01:00
|
|
|
"description": [
|
|
|
|
|
"Renovate configuration for bootc-base-image repository.",
|
|
|
|
|
"",
|
|
|
|
|
"This configuration separates updates into different PRs per release (e.g., Fedora 44, Rawhide)",
|
|
|
|
|
"to prevent blocking all releases if tests fail on one.",
|
|
|
|
|
"",
|
|
|
|
|
"Update schedules:",
|
|
|
|
|
"- Fedora 42 bootc-pipeline: 2-5 AM UTC daily",
|
|
|
|
|
"- Fedora 42 REPOS_IMAGE: at any time",
|
|
|
|
|
"- Fedora 43 bootc-pipeline: 2-5 AM UTC daily",
|
|
|
|
|
"- Fedora 43 REPOS_IMAGE: at any time",
|
|
|
|
|
"- Fedora 44 bootc-pipeline: 2-5 AM UTC daily",
|
|
|
|
|
"- Fedora 44 REPOS_IMAGE: at any time",
|
|
|
|
|
"- Rawhide bootc-pipeline: 2-5 AM UTC daily",
|
|
|
|
|
"- Rawhide REPOS_IMAGE: at any time",
|
|
|
|
|
"",
|
|
|
|
|
"Each update type (bootc-pipeline, REPOS_IMAGE) also has its own PR",
|
|
|
|
|
"for independent review and merge.",
|
|
|
|
|
"",
|
|
|
|
|
"rebaseWhen is set to 'never' for REPOS_IMAGE PRs because as different PRs",
|
|
|
|
|
"for each release are merged to main, automatic rebasing would reset pipelines",
|
|
|
|
|
"and cause tests to rerun multiple times. The operator can manually rebase if needed.",
|
|
|
|
|
"",
|
|
|
|
|
"Automerge is enabled for all PRs - they will be merged automatically when all checks pass."
|
|
|
|
|
],
|
2023-10-30 04:07:33 +00:00
|
|
|
"extends": [
|
2024-05-17 17:28:18 +00:00
|
|
|
"github>platform-engineering-org/.github"
|
2024-05-28 19:37:17 +03:00
|
|
|
],
|
2025-05-15 01:50:42 +02:00
|
|
|
"dependencyDashboard": true,
|
2026-02-12 15:28:46 +01:00
|
|
|
"automergeType": "pr",
|
|
|
|
|
"enabledManagers": [
|
|
|
|
|
"custom.regex",
|
|
|
|
|
"tekton"
|
|
|
|
|
],
|
2025-05-15 01:51:22 +02:00
|
|
|
"tekton": {
|
|
|
|
|
"additionalBranchPrefix": "",
|
|
|
|
|
"includePaths": [
|
|
|
|
|
".tekton/**"
|
|
|
|
|
],
|
2025-05-26 09:55:13 +00:00
|
|
|
"managerFilePatterns": [
|
2025-06-04 09:45:37 +02:00
|
|
|
"/\\.ya?ml$/"
|
2025-05-15 01:51:22 +02:00
|
|
|
]
|
|
|
|
|
},
|
2026-02-12 15:28:46 +01:00
|
|
|
"baseBranchPatterns": [
|
|
|
|
|
"main"
|
|
|
|
|
],
|
2025-05-15 01:51:54 +02:00
|
|
|
"customManagers": [
|
|
|
|
|
{
|
|
|
|
|
"customType": "regex",
|
|
|
|
|
"description": [
|
2026-02-12 15:28:46 +01:00
|
|
|
"Update 'REPOS_IMAGE' in tekton files"
|
2025-05-15 01:51:54 +02:00
|
|
|
],
|
2025-05-26 09:55:13 +00:00
|
|
|
"managerFilePatterns": [
|
2025-06-04 09:45:37 +02:00
|
|
|
"/.tekton/.*\\.ya?ml$/"
|
2025-05-15 01:51:54 +02:00
|
|
|
],
|
|
|
|
|
"matchStrings": [
|
2026-02-12 15:28:46 +01:00
|
|
|
"REPOS_IMAGE=(?<depName>.*):(?<currentValue>.*)@(?<currentDigest>.*)\\n"
|
2025-05-15 01:51:54 +02:00
|
|
|
],
|
2025-06-04 09:46:27 +02:00
|
|
|
"versioningTemplate": "regex:(?<compatibility>.*)-(?<patch>\\d{8})(\\.n)?\\.(?<build>\\d)",
|
2025-05-15 01:51:54 +02:00
|
|
|
"datasourceTemplate": "docker"
|
|
|
|
|
}
|
|
|
|
|
],
|
2024-05-28 19:37:17 +03:00
|
|
|
"packageRules": [
|
2025-06-04 10:32:18 +02:00
|
|
|
{
|
2026-02-12 15:28:46 +01:00
|
|
|
"matchManagers": ["tekton"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-42-*"],
|
|
|
|
|
"groupName": "Fedora 42 bootc-pipeline",
|
|
|
|
|
"groupSlug": "fedora-42-bootc-pipeline",
|
|
|
|
|
"branchPrefix": "renovate/fedora-42/",
|
|
|
|
|
"commitMessageTopic": "Fedora 42 bootc build pipeline",
|
|
|
|
|
"schedule": ["after 2am and before 5am"],
|
|
|
|
|
"timezone": "UTC",
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "always",
|
|
|
|
|
"additionalBranchPrefix": "",
|
2025-07-11 08:10:39 +02:00
|
|
|
"automerge": true
|
2025-06-04 10:32:18 +02:00
|
|
|
},
|
2026-01-20 14:38:24 +01:00
|
|
|
{
|
2026-02-12 15:28:46 +01:00
|
|
|
"matchManagers": ["custom.regex"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-42-compose/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-42-*"],
|
|
|
|
|
"groupName": "Fedora 42 REPOS_IMAGE",
|
|
|
|
|
"groupSlug": "fedora-42-repos-image",
|
|
|
|
|
"branchPrefix": "renovate/fedora-42/",
|
|
|
|
|
"commitMessageTopic": "Fedora 42 REPOS_IMAGE",
|
|
|
|
|
"schedule": ["at any time"],
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "never",
|
|
|
|
|
"additionalBranchPrefix": "",
|
2026-01-20 14:38:24 +01:00
|
|
|
"automerge": true
|
|
|
|
|
},
|
2025-06-04 10:32:18 +02:00
|
|
|
{
|
2026-02-12 15:28:46 +01:00
|
|
|
"matchManagers": ["tekton"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-43-*"],
|
|
|
|
|
"groupName": "Fedora 43 bootc-pipeline",
|
|
|
|
|
"groupSlug": "fedora-43-bootc-pipeline",
|
|
|
|
|
"branchPrefix": "renovate/fedora-43/",
|
|
|
|
|
"commitMessageTopic": "Fedora 43 bootc build pipeline",
|
|
|
|
|
"schedule": ["after 2am and before 5am"],
|
|
|
|
|
"timezone": "UTC",
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "always",
|
|
|
|
|
"additionalBranchPrefix": "",
|
|
|
|
|
"automerge": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"matchManagers": ["custom.regex"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-43-compose/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-43-*"],
|
|
|
|
|
"groupName": "Fedora 43 REPOS_IMAGE",
|
|
|
|
|
"groupSlug": "fedora-43-repos-image",
|
|
|
|
|
"branchPrefix": "renovate/fedora-43/",
|
|
|
|
|
"commitMessageTopic": "Fedora 43 REPOS_IMAGE",
|
|
|
|
|
"schedule": ["at any time"],
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "never",
|
|
|
|
|
"additionalBranchPrefix": "",
|
|
|
|
|
"automerge": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"matchManagers": ["tekton"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-44-*"],
|
|
|
|
|
"groupName": "Fedora 44 bootc-pipeline",
|
|
|
|
|
"groupSlug": "fedora-44-bootc-pipeline",
|
|
|
|
|
"branchPrefix": "renovate/fedora-44/",
|
|
|
|
|
"commitMessageTopic": "Fedora 44 bootc build pipeline",
|
|
|
|
|
"schedule": ["after 2am and before 5am"],
|
|
|
|
|
"timezone": "UTC",
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "always",
|
|
|
|
|
"additionalBranchPrefix": "",
|
|
|
|
|
"automerge": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"matchManagers": ["custom.regex"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-44-compose/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-44-*"],
|
|
|
|
|
"groupName": "Fedora 44 REPOS_IMAGE",
|
|
|
|
|
"groupSlug": "fedora-44-repos-image",
|
|
|
|
|
"branchPrefix": "renovate/fedora-44/",
|
|
|
|
|
"commitMessageTopic": "Fedora 44 REPOS_IMAGE",
|
|
|
|
|
"schedule": ["at any time"],
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "never",
|
|
|
|
|
"additionalBranchPrefix": "",
|
|
|
|
|
"automerge": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"matchManagers": ["tekton"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/tekton-catalog/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-rawhide-*"],
|
|
|
|
|
"groupName": "Fedora Rawhide bootc-pipeline",
|
|
|
|
|
"groupSlug": "fedora-rawhide-bootc-pipeline",
|
|
|
|
|
"branchPrefix": "renovate/fedora-rawhide/",
|
|
|
|
|
"commitMessageTopic": "Fedora Rawhide bootc build pipeline",
|
|
|
|
|
"schedule": ["after 2am and before 5am"],
|
|
|
|
|
"timezone": "UTC",
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "always",
|
|
|
|
|
"additionalBranchPrefix": "",
|
|
|
|
|
"automerge": true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"matchManagers": ["custom.regex"],
|
|
|
|
|
"matchPackageNames": ["/quay.io/bootc-devel/fedora-bootc-rawhide-compose/"],
|
|
|
|
|
"matchFileNames": [".tekton/fedora-bootc-rawhide-*"],
|
|
|
|
|
"groupName": "Fedora Rawhide REPOS_IMAGE",
|
|
|
|
|
"groupSlug": "fedora-rawhide-repos-image",
|
|
|
|
|
"branchPrefix": "renovate/fedora-rawhide/",
|
|
|
|
|
"commitMessageTopic": "Fedora Rawhide REPOS_IMAGE",
|
|
|
|
|
"schedule": ["at any time"],
|
|
|
|
|
"recreateWhen": "always",
|
|
|
|
|
"rebaseWhen": "never",
|
|
|
|
|
"additionalBranchPrefix": "",
|
2025-07-11 08:10:39 +02:00
|
|
|
"automerge": true
|
2024-05-28 19:37:17 +03:00
|
|
|
}
|
2023-11-21 16:02:36 +02:00
|
|
|
]
|
2023-10-30 04:07:33 +00:00
|
|
|
}
|