From 3f24d9dd7822715d9f90cafede555ad2f4e11e6d Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Thu, 14 Mar 2019 08:43:57 -0400 Subject: [PATCH] look at teams in the branch being scanned Teams come and go, so we want to iterate over the set of teams in the branch that we are scanning for unreleased changes instead of assuming the group from ocata is correct. Change-Id: Iacf3933cbfc14f9a3e7b404171247108c27083f3 Signed-off-by: Doug Hellmann --- tools/list_unreleased_and_open_changes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/list_unreleased_and_open_changes.sh b/tools/list_unreleased_and_open_changes.sh index 17411978bf..dc3c626dda 100755 --- a/tools/list_unreleased_and_open_changes.sh +++ b/tools/list_unreleased_and_open_changes.sh @@ -25,7 +25,7 @@ BRANCH=${1} RESULT_DIR="$BRANCH-$(date '+%Y%m%d-%H%M')" mkdir -p $RESULT_DIR -OPENSTACK_TEAMS=$(grep team deliverables/ocata/*.yaml | cut -f3 -d: | sort -u) +OPENSTACK_TEAMS=$(grep team deliverables/${BRANCH}/*.yaml | cut -f3 -d: | sort -u) TOOLSDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" BASEDIR=$(dirname $TOOLSDIR)