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
This commit is contained in:
Jay Faulkner 2023-01-25 13:21:31 -08:00
parent 41b05b71be
commit b63d15ccdb

View File

@ -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$"