diff --git a/e2e/protractor.excludes.json b/e2e/protractor.excludes.json index edcf548f38..e699532577 100644 --- a/e2e/protractor.excludes.json +++ b/e2e/protractor.excludes.json @@ -1,6 +1,5 @@ { "C260249" : "REPO-4772 ACS 6.2", - "C309674" : "https://issues.alfresco.com/jira/browse/ADF-5122", "C315268" : "https://issues.alfresco.com/jira/browse/ADF-5123" } diff --git a/scripts/affected-libs.sh b/scripts/affected-libs.sh index 466c86d90b..8226c6b6c1 100755 --- a/scripts/affected-libs.sh +++ b/scripts/affected-libs.sh @@ -54,6 +54,14 @@ if [ ! -f $DIRECTORY/deps.txt ]; then npm run affected:libs -- $HEAD_SHA_BRANCH "HEAD" > $DIRECTORY/deps.txt fi +LIST_SPECS="$(git diff --name-only $BRANCH_NAME HEAD)" + +if [[ $LIST_SPECS == *"protractor.excludes.json"* ]]; then + AFFECTED_LIBS="core$ content-services$ process-services$ process-services-cloud$ insights$ extensions$ testing$ cli$" + echo "${AFFECTED_LIBS}" + exit 0 +fi + #cat $DIRECTORY/deps.txt #echo "extensions" > deps.txt