From 78e648fafa04edc9c6260a917c1cfcdabe5da435 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?El=C5=91d=20Ill=C3=A9s?= Date: Wed, 23 Apr 2025 14:04:51 +0200 Subject: [PATCH] [tool] Skip tempest plugins when listing unreleased and open changes tools/list_unreleased_and_open_changes.sh script is used before stable branches transition to Unmaintained or EOL to support final stable releases of deliverables. Tempest plugins are branchless, so we don't need them to be listed. Change-Id: I98ecb19d7293a265426e582a0f3bbfb673a083f4 --- tools/list_unreleased_and_open_changes.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/list_unreleased_and_open_changes.sh b/tools/list_unreleased_and_open_changes.sh index a08127d4b4..fd7385ac21 100755 --- a/tools/list_unreleased_and_open_changes.sh +++ b/tools/list_unreleased_and_open_changes.sh @@ -52,7 +52,8 @@ for team in ${OPENSTACK_TEAMS}; do echo "Checking repositories of team: ${team}" REPOS=$(list-deliverables --repos \ - --series ${SERIES} --team ${team} | grep "^openstack/") + --series ${SERIES} --team ${team} \ + --except-type tempest-plugin | grep "^openstack/") if [ -n "${REPOS}" ]; then echo "List of open and unreleased changes of team '${team}' " \