From: Petr Špaček Date: Thu, 25 Sep 2025 11:21:23 +0000 (+0200) Subject: Do not fail post-merge jobs if merge request reference is missing X-Git-Tag: v9.21.15~42^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=545ef542a1cf3c6b7f24d44952fe055e237752d3;p=thirdparty%2Fbind9.git Do not fail post-merge jobs if merge request reference is missing Push without merge request reference on top happens when merging tags back into the public project so these failures would produce log noise. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c6143f4f4cd..3ef72c21d5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2062,7 +2062,7 @@ pairwise: - MERGE_REQUEST_ID="$(git log -1 --format='%b' | sed --silent -e "s|^See merge request ${CI_PROJECT_PATH}\!||p")" - > : stop if this is not a merge request in the current project\'s namespace - - test -n "$MERGE_REQUEST_ID" + - test -n "$MERGE_REQUEST_ID" || exit 0 - git clone --depth 1 https://gitlab.isc.org/isc-projects/bind9-qa.git backports: