summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Faulkner <jay@jvf.cc>2023-01-25 13:21:31 -0800
committerJay Faulkner <jay@jvf.cc>2023-01-25 13:56:46 -0800
commitb63d15ccdb7202af1700ce4f35b892c989356d7a (patch)
tree2133f968ea51b2384fcf05b052eb28a32b2f5ca7
parent41b05b71be47125f367b4e2df8f9eab3f17aaf1e (diff)
downloadironic-b63d15ccdb7202af1700ce4f35b892c989356d7a.tar.gz
Make reno ignore bugfix eol tags
Reno was assuming all tags ending in -eol represented an old, EOL'd stable branch. That's not true for Ironic projects which have bugfix branches. Update the regexp to exclude those branches. Co-Authored-By: Adam McArthur <adam@mcaq.me> Change-Id: I568b14097cd46d4d7d365ff894ef5cd29edd1e3a
-rw-r--r--reno.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/reno.yaml b/reno.yaml
index dd0aac790..3265dd332 100644
--- a/reno.yaml
+++ b/reno.yaml
@@ -1,4 +1,5 @@
---
# Ignore the kilo-eol tag because that branch does not work with reno
# and contains no release notes.
-closed_branch_tag_re: "(.+)(?<!kilo)-eol"
+# Ignore bugfix tags because their releasenotes are covered under stabl
+closed_branch_tag_re: "(?!^(kilo|bugfix-)).+-eol$"