From a35d7edb46fc548afbaf853383a7ab634497f7c3 Mon Sep 17 00:00:00 2001 From: Bryan Tan Date: Fri, 17 Apr 2020 15:18:37 -0700 Subject: [PATCH] [skip ci] Fix translation template CI runner not skipping CI --- azure-pipelines/translation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/translation.yml b/azure-pipelines/translation.yml index dc3c7173..8bf8a276 100644 --- a/azure-pipelines/translation.yml +++ b/azure-pipelines/translation.yml @@ -34,7 +34,7 @@ stages: displayName: 'Get the deploy key' - bash: | if [[ $(git diff --word-diff=porcelain --no-color -U0 | wc -l) -gt 9 ]]; then - git commit -am "Update translation template [skip ci]" + git commit -am "[skip ci] Update translation template" mkdir ~/.ssh && mv $DOWNLOADSECUREFILE_SECUREFILEPATH ~/.ssh/id_rsa chmod 700 ~/.ssh && chmod 600 ~/.ssh/id_rsa @@ -49,4 +49,4 @@ stages: workingDirectory: ./build displayName: 'Push new translation template' condition: | - and(not(eq(variables['Build.Reason'], 'PullRequest')), eq(variables['Build.SourceBranch'], 'refs/heads/master')) \ No newline at end of file + and(not(eq(variables['Build.Reason'], 'PullRequest')), eq(variables['Build.SourceBranch'], 'refs/heads/master'))