From 844e0f7175b11643b611241a57a19dda04ae7364 Mon Sep 17 00:00:00 2001 From: Lou DeGenaro Date: Tue, 12 Dec 2023 09:51:53 -0500 Subject: [PATCH] fix: add -s flag to commit in push script Signed-off-by: Lou DeGenaro --- scripts/automation/push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/automation/push.sh b/scripts/automation/push.sh index 542349b..118e3d6 100755 --- a/scripts/automation/push.sh +++ b/scripts/automation/push.sh @@ -42,7 +42,7 @@ function github-branch-commit() { return 0 fi # make Github CI skip this build - if ! git commit -m "Autoupdate [ci skip]"; then + if ! git commit -m "Autoupdate [ci skip]" -s; then err "failed to commit updates" return 1 fi