From f8fc7e52f36de5c3515e60f5d2e6347a538a80d8 Mon Sep 17 00:00:00 2001 From: Jay Faulkner Date: Wed, 25 Jan 2023 13:18:01 -0800 Subject: [PATCH] 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 Change-Id: I265969ab40a98a02962c2fc8460b6519ab576f99 --- releasenotes/config.yaml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 releasenotes/config.yaml diff --git a/releasenotes/config.yaml b/releasenotes/config.yaml new file mode 100644 index 000000000..3230b6810 --- /dev/null +++ b/releasenotes/config.yaml @@ -0,0 +1,2 @@ +--- +closed_branch_tag_re: 'r"(?!^bugfix.*-eol$).+-eol"'