Skip to content

Commit 3b629dd

Browse files
authored
Attempt to make Renovate work again (#2052)
Looks that I accidentally broke Renovate with #1891. This was made under the impression of the [Renovate change to support `baseBranches` in forking-renovate] (renovatebot/renovate#36054). However, a [later Renovate change](renovatebot/renovate#35579) seems to break that. The plan here is to: 1. remove the regex from our `baseBranches` option - if that doesn't work then 2. just use the default branch
1 parent 2c2052c commit 3b629dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/renovate.json5

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@
3030

3131
// Added for posterity how to let Renovate manage version-branches, assuming that release branches
3232
// have the `release/` prefix.
33+
// BE CAREFUL WITH THIS OPTION and make sure that the changes work.
3334
baseBranches: [
3435
"main",
35-
"/^release\\/1[.].*",
36+
"release/1.0.x",
3637
],
3738
additionalBranchPrefix: "{{baseBranch}}/",
3839
commitMessagePrefix: "{{baseBranch}}: ",

0 commit comments

Comments
 (0)