this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(renovate): More tweaking

+27 -1
+9 -1
.github/renovate.json5
··· 12 12 "github>samip5/k8s-cluster//.github/renovate/autoMerge.json5", 13 13 "github>samip5/k8s-cluster//.github/renovate/customVersionSchemes.json5", 14 14 "github>samip5/k8s-cluster//.github/renovate/disabledDatasources.json5", 15 + "github>samip5/k8s-cluster//.github/renovate/groups.json5", 15 16 "github>samip5/k8s-cluster//.github/renovate/labels.json5", 16 17 "github>samip5/k8s-cluster//.github/renovate/semanticCommits.json5", 17 18 "helpers:pinGitHubActionDigests" ··· 72 73 "datasourceTemplate": "github-releases", 73 74 "versioningTemplate": "semver" 74 75 } 75 - ] 76 + ], 77 + "packageRules": [ 78 + { 79 + "description": "Loose versioning for non-semver packages", 80 + "matchDatasources": ["docker"], 81 + "versioning": "loose", 82 + "matchPackagePatterns": ["changedetection", "immich"] 83 + }, 76 84 }
+14
.github/renovate/groups.json5
··· 1 + { 2 + "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 + "packageRules": [ 4 + { 5 + "description": "Immich images", 6 + "groupName": "Immich", 7 + "matchPackagePatterns": ["immich"], 8 + "matchDatasources": ["docker"], 9 + "group": { 10 + "commitMessageTopic": "{{{groupName}}} group" 11 + }, 12 + "separateMinorPatch": true 13 + }] 14 + }
+4
.github/renovate/labels.json5
··· 14 14 "labels": ["type/patch"] 15 15 }, 16 16 { 17 + "matchUpdateTypes": ["digest"], 18 + "labels": ["type/digest"] 19 + }, 20 + { 17 21 "matchDatasources": ["docker"], 18 22 "addLabels": ["renovate/container"] 19 23 },