mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 02:23:39 -05:00
Remove commit signing
This commit is contained in:
parent
f71367133f
commit
6c1bd98be5
2 changed files with 2 additions and 2 deletions
2
.github/scripts/update-npm.sh
vendored
2
.github/scripts/update-npm.sh
vendored
|
@ -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
|
||||
|
|
2
.github/scripts/update-python.sh
vendored
2
.github/scripts/update-python.sh
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue