From 02209c5fa7d5d76307d7d3adc0f2d1e2ce0b1f88 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 18 Oct 2018 16:09:14 -0700 Subject: [PATCH] tools: clarify commit message linting Clarify in Travis results that the commit message linting is for the commit message and not something else. PR-URL: https://github.com/nodejs/node/pull/23742 Reviewed-By: Richard Lau Reviewed-By: Vladimir de Turckheim Reviewed-By: Refael Ackermann Reviewed-By: Sakthipriyan Vairamani --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 156d28298b4e58..004c6ab4cf7236 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ matrix: script: - make lint # Lint the first commit in the PR. - - \[ -z "$TRAVIS_COMMIT_RANGE" \] || git log $TRAVIS_COMMIT_RANGE --pretty=format:'%h' --no-merges | tail -1 | xargs npx core-validate-commit --no-validate-metadata + - \[ -z "$TRAVIS_COMMIT_RANGE" \] || (echo -e '\nLinting the commit message according to the guidelines at https://goo.gl/p2fr5Q\n' && git log $TRAVIS_COMMIT_RANGE --pretty=format:'%h' --no-merges | tail -1 | xargs npx -q core-validate-commit --no-validate-metadata) - name: "Test Suite" install: - ./configure