diff --git a/.github/workflows/renovate-app-version.yml b/.github/workflows/renovate-app-version.yml index 02701028..3df62d50 100644 --- a/.github/workflows/renovate-app-version.yml +++ b/.github/workflows/renovate-app-version.yml @@ -2,7 +2,8 @@ name: Update app version in Renovate Branches on: pull_request: - branches: [ 'renovate/*' ] + branches: + - 'renovate/*' workflow_dispatch: inputs: manual-trigger: diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index 0e9f5909..3c3349c5 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -3,9 +3,6 @@ name: Renovate on: schedule: - cron: "0 0 * * *" - push: - branches: - - dev workflow_dispatch: inputs: manual-trigger: diff --git a/renovate.json b/renovate.json index 5910ed4b..e34be91d 100644 --- a/renovate.json +++ b/renovate.json @@ -8,6 +8,26 @@ { "packageNames": ["docker-compose"], "automerge": true + }, + { + "matchFileNames": ["apps/redis/7.*/*.yml"], + "allowedVersions": "/^7.*/" + }, + { + "matchFileNames": ["apps/redis/6.*/*.yml"], + "allowedVersions": "/^6.*/" + }, + { + "matchFileNames": ["apps/mysql/5.6.*/*.yml"], + "allowedVersions": "/^5.6.*/" + }, + { + "matchFileNames": ["apps/mysql/5.7.*/*.yml"], + "allowedVersions": "/^5.7.*/" + }, + { + "matchFileNames": ["apps/mysql/8.*/*.yml"], + "allowedVersions": "/^8.*/" } ], "prCreation": "immediate"