From 5279128975db5377054324ca95040a98b3f56b10 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 29 Nov 2024 21:18:17 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json5 --- .github/renovate.json5 | 57 ++++++++++++++++++++++++++---------------- 1 file changed, 36 insertions(+), 21 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 898f655d..17535901 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -11,39 +11,54 @@ ':disableRateLimiting', ':semanticCommits', ], - assignees: ['willianpaixao'], - reviewers: ['willianpaixao'], + assignees: [ + 'willianpaixao', + ], + reviewers: [ + 'willianpaixao', + ], assignAutomerge: true, dependencyDashboard: true, dependencyDashboardTitle: 'Renovate Dashboard 🤖', - ignorePaths: ['**/*.sops.*', '**/docs/**'], + ignorePaths: [ + '**/*.sops.*', + '**/docs/**', + ], suppressNotifications: [ 'prEditedNotification', 'prIgnoreNotification', ], rebaseWhen: 'conflicted', - schedule: ['on saturday',], - "flux": { - "fileMatch": [ - "(^|/)kubernetes/.+\\.ya?ml$" - ] + schedule: [ + 'on saturday', + ], + flux: { + fileMatch: [ + '(^|/)kubernetes/.+\\.ya?ml$', + ], }, - "helm-values": { - "fileMatch": [ - "(^|/)kubernetes/.+\\.ya?ml$" + 'helm-values': { + fileMatch: [ + '(^|/)kubernetes/.+\\.ya?ml$', ], - "pinDigests": false + pinDigests: false, }, - "kubernetes": { - "fileMatch": [ - "(^|/)kubernetes/.+\\.ya?ml$" - ] + kubernetes: { + fileMatch: [ + '(^|/)kubernetes/.+\\.ya?ml$', + ], }, - "packageRules": [ + packageRules: [ { - "matchDatasources": ["docker"], - "matchUpdateTypes": ["minor"], - "matchPackagePatterns": ["app-template"] + matchDatasources: [ + 'docker', + ], + matchUpdateTypes: [ + 'minor', + ], + matchPackageNames: [ + '/app-template/', + ], }, - ] + ], }