From dc4544d9a95339daa7b585860109bbb6ab7cfb34 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Dec 2025 15:37:04 +0000 Subject: [PATCH 1/6] 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 000000000..5db72dd6a --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} From 696e90585a14d49e1a1ba95dce9fce16b3f4b6ea Mon Sep 17 00:00:00 2001 From: Sean Breen Date: Wed, 17 Dec 2025 16:08:07 +0000 Subject: [PATCH 2/6] remove dependabot.yml --- .github/dependabot.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 559f8f717..000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: weekly - open-pull-requests-limit: 5 - pull-request-branch-name: - # Separate sections of the branch name with a hyphen - # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` - separator: "-" - - package-ecosystem: "gomod" - directory: "/" - schedule: - interval: weekly - open-pull-requests-limit: 5 - pull-request-branch-name: - # Separate sections of the branch name with a hyphen - # for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1` - separator: "-" From 5fb5a2d89e7e6731c0df322ab9440a9ea65ddabf Mon Sep 17 00:00:00 2001 From: Sean Breen Date: Wed, 17 Dec 2025 16:11:47 +0000 Subject: [PATCH 3/6] configure renovate --- .github/workflows/f5-cla.yml | 2 +- renovate.json | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/f5-cla.yml b/.github/workflows/f5-cla.yml index 2b1dc3b1f..5257032a1 100644 --- a/.github/workflows/f5-cla.yml +++ b/.github/workflows/f5-cla.yml @@ -43,7 +43,7 @@ jobs: remote-repository-name: "f5-cla-data" path-to-signatures: "signatures/beta/signatures.json" # Comma separated list of usernames for maintainers or any other individuals who should not be prompted for a CLA. - allowlist: "bot*" + allowlist: "bot*,renovate,mend" # Do not lock PRs after a merge. lock-pullrequest-aftermerge: false env: diff --git a/renovate.json b/renovate.json index 5db72dd6a..7ae34ddfb 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,14 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ] + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "schedule:daily", + "config:recommended", + "docker:enableMajor", + "helpers:pinGitHubActionDigests", + ":gitSignOff", + ":maintainLockFilesMonthly", + ":disableRateLimiting", + ":semanticCommitsDisabled" + ], + "rebaseWhen": "behind-base-branch" } From 3a7874d0cfb8ae49527f7d459a1319c9848473fb Mon Sep 17 00:00:00 2001 From: Sean Breen Date: Wed, 17 Dec 2025 16:25:22 +0000 Subject: [PATCH 4/6] add main, dev-v2 and release branches --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7ae34ddfb..73192d82b 100644 --- a/renovate.json +++ b/renovate.json @@ -10,5 +10,6 @@ ":disableRateLimiting", ":semanticCommitsDisabled" ], - "rebaseWhen": "behind-base-branch" + "rebaseWhen": "behind-base-branch", + "baseBranchPatterns": ["^main$", "dev-v2", "^release-*"] } From 21c8a1b48fe4a119112c37fbd2dd8fffc629d613 Mon Sep 17 00:00:00 2001 From: Sean Breen Date: Wed, 17 Dec 2025 16:36:49 +0000 Subject: [PATCH 5/6] fix regex --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 73192d82b..7bfa440d8 100644 --- a/renovate.json +++ b/renovate.json @@ -11,5 +11,5 @@ ":semanticCommitsDisabled" ], "rebaseWhen": "behind-base-branch", - "baseBranchPatterns": ["^main$", "dev-v2", "^release-*"] + "baseBranchPatterns": ["^main$", "^dev-v2$"] } From 0dc88651d9e4bb6a2d5c254966f65ebdf2441aa4 Mon Sep 17 00:00:00 2001 From: Sean Breen Date: Wed, 17 Dec 2025 16:39:14 +0000 Subject: [PATCH 6/6] update regex again --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7bfa440d8..490f99b20 100644 --- a/renovate.json +++ b/renovate.json @@ -11,5 +11,5 @@ ":semanticCommitsDisabled" ], "rebaseWhen": "behind-base-branch", - "baseBranchPatterns": ["^main$", "^dev-v2$"] + "baseBranchPatterns": ["main", "dev-v2"] }