From 736dee528e05d1e814d64f3bb85a47d428a10857 Mon Sep 17 00:00:00 2001 From: viktorbarzin Date: Fri, 19 Feb 2021 19:16:31 +0000 Subject: [PATCH] skip deploys when triggered by drone --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index cad2be1b..0b3db392 100644 --- a/.drone.yml +++ b/.drone.yml @@ -26,7 +26,7 @@ steps: - 'chmod 400 secrets/deploy_key' - "git add ." - "git remote set-url origin git@github.com:ViktorBarzin/infra.git" - - "git commit -m 'Drone CI deploy commit' || echo 'No changes'" + - "git commit -m 'Drone CI deploy commit [CI SKIP]' || echo 'No changes'" - "GIT_SSH_COMMAND='ssh -i ./secrets/deploy_key -o IdentitiesOnly=yes' git push origin master" ---