diff options
-rw-r--r-- | .github/workflows/go.fmt.yml | 2 | ||||
-rw-r--r-- | .github/workflows/go.tidy.yml | 2 | ||||
-rw-r--r-- | .github/workflows/make.doc.yml | 2 | ||||
-rw-r--r-- | .github/workflows/whitespace.yml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/go.fmt.yml b/.github/workflows/go.fmt.yml index 288657fdd..6bff154a2 100644 --- a/.github/workflows/go.fmt.yml +++ b/.github/workflows/go.fmt.yml @@ -31,6 +31,6 @@ jobs: run: | git add . if output=$(git status --porcelain) && [ ! -z "$output" ]; then - git commit -m 'auto go fmt' + git commit -s -m 'auto go fmt' git push fi diff --git a/.github/workflows/go.tidy.yml b/.github/workflows/go.tidy.yml index a0175f5a0..f93e7d1c1 100644 --- a/.github/workflows/go.tidy.yml +++ b/.github/workflows/go.tidy.yml @@ -34,6 +34,6 @@ jobs: run: | git add . if output=$(git status --porcelain) && [ ! -z "$output" ]; then - git commit -m 'auto go mod tidy' + git commit -s -m 'auto go mod tidy' git push fi diff --git a/.github/workflows/make.doc.yml b/.github/workflows/make.doc.yml index 8fef7f0a3..8dbe16bf3 100644 --- a/.github/workflows/make.doc.yml +++ b/.github/workflows/make.doc.yml @@ -38,6 +38,6 @@ jobs: run: | git add . if output=$(git status --porcelain) && [ ! -z "$output" ]; then - git commit -m 'auto make -f Makefile.doc' + git commit -s -m 'auto make -f Makefile.doc' git push fi diff --git a/.github/workflows/whitespace.yml b/.github/workflows/whitespace.yml index 3f27966fd..477723ee5 100644 --- a/.github/workflows/whitespace.yml +++ b/.github/workflows/whitespace.yml @@ -31,6 +31,6 @@ jobs: run: | git add . if output=$(git status --porcelain) && [ ! -z "$output" ]; then - git commit -m 'auto remove trailing whitespaces' + git commit -s -m 'auto remove trailing whitespaces' git push fi |