diff options
author | 2021-03-17 14:16:17 +0100 | |
---|---|---|
committer | 2021-03-17 14:16:17 +0100 | |
commit | 5457cdcd4b2a37cdb6fa2e876dfe4b378c2f1fed (patch) | |
tree | 8dc81c0a47093b963b21e564d535674dd6fefd7f | |
parent | 5a40a2cd63a292caff030f95b052312386ebf9fb (diff) | |
download | coredns-5457cdcd4b2a37cdb6fa2e876dfe4b378c2f1fed.tar.gz coredns-5457cdcd4b2a37cdb6fa2e876dfe4b378c2f1fed.tar.zst coredns-5457cdcd4b2a37cdb6fa2e876dfe4b378c2f1fed.zip |
workflow: sign commits (#4526)
This doesn't do much, but at least it doesn't litter PRs with non-signed
commits. This should keep the DCO clean(er)
Signed-off-by: Miek Gieben <miek@miek.nl>
-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 |