From 1413e52e5cdbf8992e3c7df8ff1163861ac40e07 Mon Sep 17 00:00:00 2001 From: Julien Fraichot Date: Fri, 26 May 2023 15:27:38 +0200 Subject: [PATCH] chore(Compliance): run publish only on PR --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index abe6445f..d269dc6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,4 +19,4 @@ after_script: - python3 setup.py install - npm ci - npm run test:vc-compliance - - 'if [ "$TRAVIS_BRANCH" = "master" ]; then sh publish-vc-compliance-result.sh; fi' # if no changes, no commit \ No newline at end of file + - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sh publish-vc-compliance-result.sh; fi' # if no changes, no commit \ No newline at end of file