3 Commits

Author SHA1 Message Date
0a6ec263cf Update ghcr.io/orwellianepilogue/ephemera Docker tag to v2
All checks were successful
lint-test-helm / lint-helm (pull_request) Successful in 17s
render-manifests-automerge / render-manifests-automerge (pull_request) Has been skipped
render-manifests-merge / render-manifests-merge (pull_request) Successful in 59s
2026-01-07 23:15:29 +00:00
a3b5e95997 add custom manager
All checks were successful
renovate / renovate (push) Successful in 1m21s
2026-01-07 17:14:08 -06:00
f55c2cf391 update image
Some checks failed
render-manifests-push / render-manifests-push (push) Successful in 43s
lint-test-helm / lint-helm (push) Successful in 53s
renovate / renovate (push) Has been cancelled
2026-01-07 17:12:27 -06:00
4 changed files with 28 additions and 55 deletions

View File

@@ -9,7 +9,7 @@ ephemera:
main: main:
image: image:
repository: ghcr.io/orwellianepilogue/ephemera repository: ghcr.io/orwellianepilogue/ephemera
tag: 1.4.2 tag: 2.0.0
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
env: env:
- name: AA_BASE_URL - name: AA_BASE_URL

View File

@@ -19,4 +19,4 @@ dependencies:
repository: https://bjw-s-labs.github.io/helm-charts/ repository: https://bjw-s-labs.github.io/helm-charts/
version: 4.6.0 version: 4.6.0
# renovate: github=alexlebens/yubal-playlist # renovate: github=alexlebens/yubal-playlist
appVersion: 0.0.5 appVersion: 0.0.7

View File

@@ -9,7 +9,7 @@ yubal-playlist:
main: main:
image: image:
repository: harbor.alexlebens.net/images/yubal-playlist repository: harbor.alexlebens.net/images/yubal-playlist
tag: 0.0.5 tag: 0.0.7
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
env: env:
- name: YUBAL_TZ - name: YUBAL_TZ

View File

@@ -5,6 +5,16 @@
"mergeConfidence:all-badges", "mergeConfidence:all-badges",
":rebaseStalePrs" ":rebaseStalePrs"
], ],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["(^|/)Chart\\.yaml$"],
"matchStrings": [
"# renovate: github=(?<packageName>[^\\s]+)\\s+version: (?<currentValue>[^\\s]+)"
],
"datasourceTemplate": "github-releases"
}
],
"timezone": "US/Central", "timezone": "US/Central",
"labels": [], "labels": [],
"prHourlyLimit": 0, "prHourlyLimit": 0,
@@ -12,81 +22,47 @@
"packageRules": [ "packageRules": [
{ {
"description": "Label charts", "description": "Label charts",
"matchDatasources": [ "matchDatasources": ["helm"],
"helm" "addLabels": ["chart"],
],
"addLabels": [
"chart"
],
"automerge": false "automerge": false
}, },
{ {
"description": "Automerge chart patches", "description": "Automerge chart patches",
"matchUpdateTypes": [ "matchUpdateTypes": ["patch"],
"patch" "matchDatasources": ["helm"],
], "addLabels": ["chart", "automerge"],
"matchDatasources": [
"helm"
],
"addLabels": [
"chart",
"automerge"
],
"automerge": true, "automerge": true,
"minimumReleaseAge": "1 days" "minimumReleaseAge": "1 days"
}, },
{ {
"description": "Automerge helm chart lock files", "description": "Automerge helm chart lock files",
"matchManagers": [ "matchManagers": ["helm"],
"helm"
],
"lockFileMaintenance": { "lockFileMaintenance": {
"enabled": true "enabled": true
}, },
"addLabels": [ "addLabels": ["chart", "automerge"],
"chart",
"automerge"
],
"automerge": true, "automerge": true,
"automergeType": "branch" "automergeType": "branch"
}, },
{ {
"description": "Label images", "description": "Label images",
"matchDatasources": [ "matchDatasources": ["docker"],
"docker" "addLabels": ["image"],
],
"addLabels": [
"image"
],
"automerge": false "automerge": false
}, },
{ {
"description": "Automerge image patches", "description": "Automerge image patches",
"matchUpdateTypes": [ "matchUpdateTypes": ["patch", "digest"],
"patch", "matchDatasources": ["docker"],
"digest" "addLabels": ["image", "automerge"],
],
"matchDatasources": [
"docker"
],
"addLabels": [
"image",
"automerge"
],
"automerge": true, "automerge": true,
"minimumReleaseAge": "1 days" "minimumReleaseAge": "1 days"
}, },
{ {
"description": "Automerge image updates for certain applications", "description": "Automerge image updates for certain applications",
"matchUpdateTypes": [ "matchUpdateTypes": ["minor"],
"minor" "matchDatasources": ["docker"],
],
"matchDatasources": [
"docker"
],
"matchPackageNames": [ "matchPackageNames": [
"clidey/whodb",
"eigenfocus/eigenfocus",
"ghcr.io/advplyr/audiobookshelf", "ghcr.io/advplyr/audiobookshelf",
"ghcr.io/gethomepage/homepage", "ghcr.io/gethomepage/homepage",
"ghcr.io/gitroomhq/postiz-app", "ghcr.io/gitroomhq/postiz-app",
@@ -100,10 +76,7 @@
"ghcr.io/prometheus-community/charts/kube-prometheus-stack", "ghcr.io/prometheus-community/charts/kube-prometheus-stack",
"vectorim/element-web" "vectorim/element-web"
], ],
"addLabels": [ "addLabels": ["image", "automerge"],
"image",
"automerge"
],
"automerge": true, "automerge": true,
"minimumReleaseAge": "2 days" "minimumReleaseAge": "2 days"
} }