From 6c1bd98be5bb4cfef751d1e11da87748157af074 Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Tue, 22 Feb 2022 10:26:50 -0500 Subject: [PATCH] Remove commit signing --- .github/scripts/update-npm.sh | 2 +- .github/scripts/update-python.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/update-npm.sh b/.github/scripts/update-npm.sh index 15e40e87..b7ea87a1 100755 --- a/.github/scripts/update-npm.sh +++ b/.github/scripts/update-npm.sh @@ -23,7 +23,7 @@ if [[ $(git status --porcelain) ]]; then # Push changes to remote echo "Pushing changes to remote..." git add . - git commit -a -Ss -m "Update NPM dependencies" + git commit -a -m "Update NPM dependencies" # shellcheck disable=SC2154 git checkout -b "npm_deps_${id}" # shellcheck disable=SC2154 diff --git a/.github/scripts/update-python.sh b/.github/scripts/update-python.sh index dea47527..e6a24632 100755 --- a/.github/scripts/update-python.sh +++ b/.github/scripts/update-python.sh @@ -63,7 +63,7 @@ if [[ $(git status --porcelain) ]]; then # Push changes to remote echo "Pushing changes to remote..." git add . - git commit -a -Ss -m "Update Python dependencies" + git commit -a -m "Update Python dependencies" # shellcheck disable=SC2154 git checkout -b "python_deps_${id}" # shellcheck disable=SC2154