From 44574f34a8c0b4ba788714815472f1ad7c908fdd Mon Sep 17 00:00:00 2001 From: Lou DeGenaro Date: Tue, 12 Dec 2023 09:53:03 -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 5e25126..957cfe2 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