From 106ec8439e72535ef82cc139984eb3f0100a70b6 Mon Sep 17 00:00:00 2001 From: Philip Cook Date: Wed, 6 Jul 2022 10:43:05 -0400 Subject: [PATCH] ENH: Skip CI on the post-release commit The post-release commit just resets a flag, no need to push a docker image --- Utilities/tagRelease.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/tagRelease.pl b/Utilities/tagRelease.pl index 25b69071f..5aaa1728e 100755 --- a/Utilities/tagRelease.pl +++ b/Utilities/tagRelease.pl @@ -105,6 +105,6 @@ close($outFH); system("git add Version.cmake"); -system("git commit -m \"Updating version for development post $tag\""); +system("git commit -m \"[skip ci] Updating version for development post $tag\""); print("\nPushing changed Version.cmake\n"); system("git push origin $masterBranchLabel") == 0