From 34ed7d62c83188526a240207a0dcb7b79fd12361 Mon Sep 17 00:00:00 2001 From: norvell Date: Wed, 5 Oct 2022 11:42:11 +0000 Subject: [PATCH] Change CI_MERGE_REQUEST_TITLE to CI_COMMIT_MESSAGE in codec-comparison-on-main-push. Should resolve false failure when Non-BE changes are merged to main, as long as the default merge message is not changed and still contains the MR title. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ff03afc65..7ce0765ad5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -435,7 +435,7 @@ codec-comparison-on-main-push: - git checkout $latest_commit # helper variable - "|| true" to prevent failures from grep not finding anything - - non_be_flag=$(echo $CI_MERGE_REQUEST_TITLE | grep -c --ignore-case "\[non[ -]*be\]") || true + - non_be_flag=$(echo $CI_COMMIT_MESSAGE | grep -c --ignore-case "\[non[ -]*be\]") || true ### prepare pytest # create short test vectors -- GitLab