From 66706e20194149162938c37cb6967e589ee0b2cc Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 12 Feb 2023 12:35:20 +0000 Subject: [PATCH 01/25] Add renovate.json --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..39a2b6e --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ] +} From aadff300c9db5804780c77593885e1c816750626 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sun, 12 Feb 2023 19:41:15 +0100 Subject: [PATCH 02/25] add tmp directory --- .drone.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.drone.yml b/.drone.yml index 1fb56a5..69e3f8e 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,6 +22,9 @@ steps: - name: renovate image: renovate/renovate:33.2.0 + volumes: + - name: tmp + path: /tmp # https://github.com/renovatebot/renovate/discussions/15049 commands: - unset GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL @@ -30,3 +33,8 @@ steps: environment: RENOVATE_TOKEN: from_secret: RENOVATE_TOKEN + +volumes: +- name: tmp + host: + path: /tmp From 1dca9c55bb78890dbb0d0161461cd16d1663a4a0 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sun, 12 Feb 2023 19:52:12 +0100 Subject: [PATCH 03/25] change branch prefix --- config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/config.js b/config.js index 1b69925..dadae27 100644 --- a/config.js +++ b/config.js @@ -8,6 +8,7 @@ module.exports = { $schema: 'https://docs.renovatebot.com/renovate-schema.json', extends: ['config:base'] }, + branchPrefix: 'renovate-', optimizeForDisabled: true, persistRepoData: true, repositories: [ From fb524dd4d58272b509150a3b5992182ce6c8498f Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sun, 12 Feb 2023 20:50:48 +0100 Subject: [PATCH 04/25] add github token --- .drone.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.drone.yml b/.drone.yml index 69e3f8e..30309e1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -33,6 +33,8 @@ steps: environment: RENOVATE_TOKEN: from_secret: RENOVATE_TOKEN + GITHUB_COM_TOKEN: + from_secret: GITHUB_TOKEN volumes: - name: tmp From 939c8b293d8c25fc6ca5afb45ea9441a6f0f8691 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sun, 12 Feb 2023 21:53:10 +0100 Subject: [PATCH 05/25] try without autodiscover --- config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.js b/config.js index dadae27..ce418b8 100644 --- a/config.js +++ b/config.js @@ -3,10 +3,10 @@ module.exports = { endpoint: 'https://git.cloonar.com/api/v1/', gitAuthor: 'Renovate Bot ', username: 'renovate', - autodiscover: true, + // autodiscover: true, onboardingConfig: { $schema: 'https://docs.renovatebot.com/renovate-schema.json', - extends: ['config:base'] + extends: ['config:base', ':rebaseStalePrs'] }, branchPrefix: 'renovate-', optimizeForDisabled: true, From dab11355f507f5acffc340e91bb1fada1234d677 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Sun, 12 Feb 2023 21:55:30 +0100 Subject: [PATCH 06/25] cahnge to autodiscover --- config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.js b/config.js index ce418b8..2e96c3c 100644 --- a/config.js +++ b/config.js @@ -3,7 +3,7 @@ module.exports = { endpoint: 'https://git.cloonar.com/api/v1/', gitAuthor: 'Renovate Bot ', username: 'renovate', - // autodiscover: true, + autodiscover: true, onboardingConfig: { $schema: 'https://docs.renovatebot.com/renovate-schema.json', extends: ['config:base', ':rebaseStalePrs'] @@ -11,7 +11,7 @@ module.exports = { branchPrefix: 'renovate-', optimizeForDisabled: true, persistRepoData: true, - repositories: [ - "cloonar/wohnservice-wien-typo3" - ] + // repositories: [ + // "cloonar/wohnservice-wien-typo3" + // ] } From 853864ebed88dad5e4cd908647ded5d00766a401 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 8 Dec 2023 01:03:57 +0100 Subject: [PATCH 07/25] add workflow --- .gitea/workflows/renovate.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/renovate.yaml diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml new file mode 100644 index 0000000..6727132 --- /dev/null +++ b/.gitea/workflows/renovate.yaml @@ -0,0 +1,20 @@ +name: renovate + +on: + schedule: + - cron: "@hourly" + push: + branches: + - main + +jobs: + renovate: + runs-on: ubuntu-latest + container: ghcr.io/renovatebot/renovate:37.20.2 + steps: + - uses: actions/checkout@v4 + - run: renovate + env: + RENOVATE_CONFIG_FILE: "/workspace/renovate/renovate-config/config.js" # replace it with your config.js path + LOG_LEVEL: "debug" + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token From e8d0708a6ee209b981ed79db7e0e5595387ff887 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 8 Dec 2023 11:55:37 +0100 Subject: [PATCH 08/25] run workflow --- .gitea/workflows/renovate.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 6727132..74b9d27 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -7,6 +7,7 @@ on: branches: - main + jobs: renovate: runs-on: ubuntu-latest From 49be44fea37f0ce2b38e2cc79adf33e4838ccc31 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 8 Dec 2023 11:55:49 +0100 Subject: [PATCH 09/25] run workflow --- .gitea/workflows/renovate.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 74b9d27..cc3adcc 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -5,8 +5,7 @@ on: - cron: "@hourly" push: branches: - - main - + - master jobs: renovate: From 2527419bb99592369fe1906aacfed3abf6ba4c25 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 8 Dec 2023 12:26:29 +0100 Subject: [PATCH 10/25] try --- .gitea/workflows/renovate.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index cc3adcc..86cae0b 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -7,6 +7,7 @@ on: branches: - master + jobs: renovate: runs-on: ubuntu-latest From 2f18f3718964c7c19111a23c8fc3d0fb270623b4 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 8 Dec 2023 12:48:15 +0100 Subject: [PATCH 11/25] change cron syntax --- .gitea/workflows/renovate.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 86cae0b..0048a43 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -2,12 +2,11 @@ name: renovate on: schedule: - - cron: "@hourly" + - cron: "0 * * * *" push: branches: - master - jobs: renovate: runs-on: ubuntu-latest From c1bc45e2f29c7f201c844892c7f5c0548d3bc5b2 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Thu, 18 Jan 2024 21:15:14 +0100 Subject: [PATCH 12/25] change cron --- .gitea/workflows/renovate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 0048a43..4bdfd69 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -2,7 +2,7 @@ name: renovate on: schedule: - - cron: "0 * * * *" + - cron: 20 * * * * push: branches: - master From 267287719706133111bd9752cdb05ed48e4813c1 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 4 Jun 2024 00:16:25 +0200 Subject: [PATCH 13/25] try cron --- .gitea/workflows/renovate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 4bdfd69..e30d740 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -2,7 +2,7 @@ name: renovate on: schedule: - - cron: 20 * * * * + - cron: 17 * * * * push: branches: - master From a9467b77645891b3c83f156b0562d5a40f3a612c Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 4 Jun 2024 00:18:07 +0200 Subject: [PATCH 14/25] try cron --- .gitea/workflows/renovate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index e30d740..f334bc6 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -2,7 +2,7 @@ name: renovate on: schedule: - - cron: 17 * * * * + - cron: '*/5 * * * *' push: branches: - master From 8d7d1fae52f46f4c92a85166e7b992d84c2a7ecd Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 4 Jun 2024 00:18:35 +0200 Subject: [PATCH 15/25] change cron to hourly --- .gitea/workflows/renovate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index f334bc6..845280f 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -2,7 +2,7 @@ name: renovate on: schedule: - - cron: '*/5 * * * *' + - cron: '0 * * * *' push: branches: - master From a5b0bccd8e7832f009fbaf35091ce0d68b8c26f2 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 4 Jun 2024 00:19:51 +0200 Subject: [PATCH 16/25] change log level --- .gitea/workflows/renovate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 845280f..7877102 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -16,5 +16,5 @@ jobs: - run: renovate env: RENOVATE_CONFIG_FILE: "/workspace/renovate/renovate-config/config.js" # replace it with your config.js path - LOG_LEVEL: "debug" + LOG_LEVEL: "info" RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token From 205fc8a52ec01d57d878a3b247ebf8b0908b3ae9 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Thu, 3 Oct 2024 21:49:44 +0200 Subject: [PATCH 17/25] change to run every 12 hours --- .gitea/workflows/renovate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 7877102..94e23ca 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -2,7 +2,7 @@ name: renovate on: schedule: - - cron: '0 * * * *' + - cron: '0 */12 * * *' push: branches: - master From aa56dab9450c2dca1a1162876cb1cd9346593a9c Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 4 Oct 2024 21:41:43 +0200 Subject: [PATCH 18/25] migrate config --- config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.js b/config.js index 2e96c3c..cb242fb 100644 --- a/config.js +++ b/config.js @@ -6,7 +6,7 @@ module.exports = { autodiscover: true, onboardingConfig: { $schema: 'https://docs.renovatebot.com/renovate-schema.json', - extends: ['config:base', ':rebaseStalePrs'] + extends: ["config:recommended", ":rebaseStalePrs"] }, branchPrefix: 'renovate-', optimizeForDisabled: true, From 577a0cc0090fb91cdcbc2a7c7ef7ec7609a6c021 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 4 Oct 2024 21:44:29 +0200 Subject: [PATCH 19/25] update renovate --- .gitea/workflows/renovate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index 94e23ca..c46540e 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -10,7 +10,7 @@ on: jobs: renovate: runs-on: ubuntu-latest - container: ghcr.io/renovatebot/renovate:37.20.2 + container: ghcr.io/renovatebot/renovate:38.110.1 steps: - uses: actions/checkout@v4 - run: renovate From 68f7ef39b5f1d3af0e1642c2123fe47fade7b0e8 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 4 Oct 2024 21:58:44 +0200 Subject: [PATCH 20/25] test run --- config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/config.js b/config.js index cb242fb..9b2d21d 100644 --- a/config.js +++ b/config.js @@ -15,3 +15,4 @@ module.exports = { // "cloonar/wohnservice-wien-typo3" // ] } + From bea601d159834b0660c7c4715a6b3e13d174faeb Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 12 Nov 2024 14:53:14 +0100 Subject: [PATCH 21/25] add gbv to renovate --- config.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config.js b/config.js index 9b2d21d..5640488 100644 --- a/config.js +++ b/config.js @@ -11,8 +11,10 @@ module.exports = { branchPrefix: 'renovate-', optimizeForDisabled: true, persistRepoData: true, - // repositories: [ - // "cloonar/wohnservice-wien-typo3" - // ] + repositories: [ + "cloonar/wohnservice-wien-typo3", + "cloonar/gbv-aktuell", + "cloonar/amz-api" + ] } From 7f323f1958a6fc2266c763d3c459b6b4330764c4 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 12 Nov 2024 14:57:39 +0100 Subject: [PATCH 22/25] remove repositories as autodiscover is enough --- config.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/config.js b/config.js index 5640488..1ec4b58 100644 --- a/config.js +++ b/config.js @@ -11,10 +11,5 @@ module.exports = { branchPrefix: 'renovate-', optimizeForDisabled: true, persistRepoData: true, - repositories: [ - "cloonar/wohnservice-wien-typo3", - "cloonar/gbv-aktuell", - "cloonar/amz-api" - ] } From 8423777ebc000e99a3592b01e5a9ed9557397538 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 12 Nov 2024 15:04:14 +0100 Subject: [PATCH 23/25] test run --- config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/config.js b/config.js index 1ec4b58..0bb6642 100644 --- a/config.js +++ b/config.js @@ -12,4 +12,3 @@ module.exports = { optimizeForDisabled: true, persistRepoData: true, } - From 97bdd079467d405e93919a559e7879b403eb14a9 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 12 Nov 2024 15:14:31 +0100 Subject: [PATCH 24/25] test run --- config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/config.js b/config.js index 0bb6642..1ec4b58 100644 --- a/config.js +++ b/config.js @@ -12,3 +12,4 @@ module.exports = { optimizeForDisabled: true, persistRepoData: true, } + From 2e5a3538f4af2f52ac162e46167a49ecd0ceb2ef Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 12 Nov 2024 17:10:49 +0100 Subject: [PATCH 25/25] add github token --- .gitea/workflows/renovate.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml index c46540e..acccd92 100644 --- a/.gitea/workflows/renovate.yaml +++ b/.gitea/workflows/renovate.yaml @@ -18,3 +18,4 @@ jobs: RENOVATE_CONFIG_FILE: "/workspace/renovate/renovate-config/config.js" # replace it with your config.js path LOG_LEVEL: "info" RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # your Revonate bot token + GITHUB_COM_TOKEN: ${{ secrets.COM_GITHUB_TOKEN }} # your GitHub token