summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml14
1 files changed, 9 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8138a8279..0db9745f6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -50,12 +50,16 @@ check-commit-log:
GIT_DEPTH: "100"
stage: review
script:
- - if [[ x"$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" != "x" ]] ;
+ - ci-fairy check-commits --junit-xml=check-junit-report.xml && exit 0;
+ if [[ -z "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" ]] ;
then
- ci-fairy check-commits --junit-xml=check-junit-report.xml ;
- else
- echo "Not a merge request" ;
- fi
+ echo "'ci-fairy check-commits' found commit messages with unexpected format, see https://wiki.gnome.org/Git/CommitMessages for the recommended guidelines. Please fix those before filing a merge request, this will be handled as a pipeline failure there." ;
+ exit 255 ;
+ fi ;
+ exit 1
+ allow_failure:
+ exit_codes:
+ - 255
<<: *check
check-merge-request: