From 8fabfd3e76bc2a766b5496e4577e4605632b8503 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Sat, 18 Nov 2023 18:17:59 +0100 Subject: [PATCH] Delete .github/renovate-config.js Signed-off-by: Kjeld Schouten --- .github/renovate-config.js | 81 -------------------------------------- 1 file changed, 81 deletions(-) delete mode 100644 .github/renovate-config.js diff --git a/.github/renovate-config.js b/.github/renovate-config.js deleted file mode 100644 index 2ffebc819fa..00000000000 --- a/.github/renovate-config.js +++ /dev/null @@ -1,81 +0,0 @@ -module.exports = { - dryRun: false, - username: "truecharts-admin", - gitAuthor: "truecharts-admin ", - onboarding: false, - platform: "github", - repositories: ["truecharts/charts"], - allowPostUpgradeCommandTemplating: true, - allowedPostUpgradeCommands: ["^.*"], - regexManagers: [ - { - fileMatch: ["(^|/)Chart\\.yaml$"], - matchStrings: [ - '#\\s?renovate: image=(?.*?)\\s?appVersion:\\s?\\"?(?[\\w+\\.\\-]*)', - ], - datasourceTemplate: "docker", - }, - ], - packageRules: [ - { - matchManagers: ["helm-requirements", "helm-values", "regex"], - datasources: ["docker"], - matchUpdateTypes: ["major"], - postUpgradeTasks: { - commands: [ - ` version=$(grep '^version:' {{{packageFileDir}}}/Chart.yaml | awk '{print $2}') - major=$(echo $version | cut -d. -f1) - minor=$(echo $version | cut -d. -f2) - patch=$(echo $version | cut -d. -f3) - major=$(expr major + 1) - echo "Replacing $version with $major.$minor.$patch" - sed -i "s/^version:.*/version: $\{major\}.$\{minor\}.$\{patch\}/g" {{{packageFileDir}}}/Chart.yaml - cat {{{packageFileDir}}}/Chart.yaml - `, - ], - }, - fileFilters: ["**/Chart.yaml"], - executionMode: "branch", - }, - { - matchManagers: ["helm-requirements", "helm-values", "regex"], - datasources: ["docker"], - matchUpdateTypes: ["minor"], - postUpgradeTasks: { - commands: [ - ` version=$(grep '^version:' {{{packageFileDir}}}/Chart.yaml | awk '{print $2}') - major=$(echo $version | cut -d. -f1) - minor=$(echo $version | cut -d. -f2) - patch=$(echo $version | cut -d. -f3) - minor=$(expr $minor + 1) - echo "Replacing $version with $major.$minor.$patch" - sed -i "s/^version:.*/version: $\{major\}.$\{minor\}.$\{patch\}/g" {{{packageFileDir}}}/Chart.yaml - cat {{{packageFileDir}}}/Chart.yaml - `, - ], - }, - fileFilters: ["**/Chart.yaml"], - executionMode: "branch", - }, - { - matchManagers: ["helm-requirements", "helm-values", "regex"], - datasources: ["docker"], - matchUpdateTypes: ["patch", "digest", "pin"], - postUpgradeTasks: { - commands: [ - ` version=$(grep '^version:' {{{packageFileDir}}}/Chart.yaml | awk '{print $2}') - major=$(echo $version | cut -d. -f1) - minor=$(echo $version | cut -d. -f2) - patch=$(echo $version | cut -d. -f3) - patch=$(expr patch + 1) - echo "Replacing $version with $major.$minor.$patch" - sed -i "s/^version:.*/version: $\{major\}.$\{minor\}.$\{patch\}/g" {{{packageFileDir}}}/Chart.yaml - cat {{{packageFileDir}}}/Chart.yaml - `, - ], - }, - fileFilters: ["**/Chart.yaml"], - executionMode: "branch", - }, - ], -};