Skip to content

Commit

Permalink
[renovate] Fix match for all base branches (#205963)
Browse files Browse the repository at this point in the history
https://docs.renovatebot.com/string-pattern-matching/ doesn't appear to
be working for this setting.

The documentation [mentions regular expression
support](https://docs.renovatebot.com/configuration-options/#matchbasebranches),
this moves the expression over.
  • Loading branch information
jbudz authored Jan 10, 2025
1 parent 0585712 commit 4991ee1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"team:kibana-operations"
],
"matchBaseBranches": [
"*"
"/^[8-9].*/"
],
"labels": [
"Team:Operations",
Expand All @@ -94,7 +94,7 @@
"team:kibana-operations"
],
"matchBaseBranches": [
"*"
"/.*/"
],
"labels": [
"Team:Operations",
Expand Down Expand Up @@ -3213,7 +3213,7 @@
"team:kibana-operations"
],
"matchBaseBranches": [
"*"
"/.*/"
],
"labels": [
"Team:Operations",
Expand Down

0 comments on commit 4991ee1

Please sign in to comment.