From dd8feda8cbff174dee35c6aab9ae2212f184eceb Mon Sep 17 00:00:00 2001 From: Jay Faulkner Date: Wed, 25 Jan 2023 13:22:33 -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: I2f8c80bd2aac2d00616ac2a2789a7da303d29656 (cherry picked from commit e1f3b71a39ff69521c2a84a3c9fa23cdbc20235d) --- 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"'