containers/.forgejo/renovate.json5
Tommy Skaug 14a76a5d7c
Some checks failed
Build and Push Images with Kaniko / discover-dockerfiles (push) Successful in 59s
Build and Push Images with Kaniko / build-and-push (push) Failing after 4s
misc
2024-12-30 21:50:06 +01:00

50 lines
No EOL
1.8 KiB
Text

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"docker:enableMajor",
":dependencyDashboard",
":disableRateLimiting",
":timezone(America/New_York)",
":semanticCommits"
],
"dependencyDashboardTitle": "Renovate Dashboard 🤖",
"suppressNotifications": ["prEditedNotification", "prIgnoreNotification"],
"packageRules": [
{
"addLabels": ["renovate/container", "type/major"],
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageExtra": " ( {{currentVersion}} → {{newVersion}} )",
"commitMessagePrefix": "feat({{parentDir}})!: ",
"commitMessageTopic": "{{depName}}",
"labels": ["app/{{parentDir}}"],
"matchDatasources": ["docker"],
"matchFileNames": ["apps/**/Dockerfile"],
"matchUpdateTypes": ["major"]
},
{
"addLabels": ["renovate/container", "type/minor"],
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )",
"commitMessageTopic": "{{depName}}",
"labels": ["app/{{parentDir}}"],
"matchDatasources": ["docker"],
"matchFileNames": ["apps/**/Dockerfile"],
"matchUpdateTypes": ["minor"],
"semanticCommitScope": "{{parentDir}}",
"semanticCommitType": "feat"
},
{
"addLabels": ["renovate/container", "type/patch"],
"additionalBranchPrefix": "{{parentDir}}-",
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )",
"commitMessageTopic": "{{depName}}",
"labels": ["app/{{parentDir}}"],
"matchDatasources": ["docker"],
"matchFileNames": ["apps/**/Dockerfile"],
"matchUpdateTypes": ["patch"],
"semanticCommitScope": "{{parentDir}}",
"semanticCommitType": "fix"
}
]
}