From f0350d31efe0873f0a1280ecc8fa7f3715f3e3ef Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 07:27:35 +0000 Subject: [PATCH 1/5] Add renovate.json Signed-off-by: Andreas Heinrich --- 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..5db72dd --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} From ab5d20eb7660f42a44d0569718309d4500f2b776 Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Tue, 6 Aug 2024 09:35:47 +0200 Subject: [PATCH 2/5] Move renovate config Signed-off-by: Andreas Heinrich --- renovate.json => .github/renovate.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename renovate.json => .github/renovate.json (100%) diff --git a/renovate.json b/.github/renovate.json similarity index 100% rename from renovate.json rename to .github/renovate.json From 92aa34a21917150ee458e68f0a8f9b2c66a5f606 Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Tue, 6 Aug 2024 11:18:14 +0200 Subject: [PATCH 3/5] Add custom Manager Signed-off-by: Andreas Heinrich --- .github/renovate.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 5db72dd..615f64b 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,5 +2,18 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "customManagers": [ + { + "description": "Custom manager for Custom Docker GitHub Actions", + "customType": "regex", + "datasourceTemplate": "docker", + "fileMatch": [ + "^action.yaml$" + ], + "matchStrings": [ + "docker://(?.*?):(?[\\w+\\.\\-]*)" + ] + } ] } From b22704bfe7011ad8ea1c5e9b93d33fe54a9f9b53 Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Tue, 6 Aug 2024 11:24:39 +0200 Subject: [PATCH 4/5] Fix fileMatch Signed-off-by: Andreas Heinrich --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 615f64b..aad8a06 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -9,7 +9,7 @@ "customType": "regex", "datasourceTemplate": "docker", "fileMatch": [ - "^action.yaml$" + "(^|/)action\\.ya?ml$" ], "matchStrings": [ "docker://(?.*?):(?[\\w+\\.\\-]*)" From 2fdc3624c5a4d011fda2ce49ca4de76cc36dbd23 Mon Sep 17 00:00:00 2001 From: Andreas Heinrich Date: Tue, 6 Aug 2024 11:27:01 +0200 Subject: [PATCH 5/5] Add label 'renovate' to renovate's PRs Signed-off-by: Andreas Heinrich --- .github/renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index aad8a06..170d0f4 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -15,5 +15,8 @@ "docker://(?.*?):(?[\\w+\\.\\-]*)" ] } + ], + "labels": [ + "renovate" ] }