mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 16:24:19 -04:00
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>
This commit is contained in:
2
.github/workflows/go.fmt.yml
vendored
2
.github/workflows/go.fmt.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/go.tidy.yml
vendored
2
.github/workflows/go.tidy.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/make.doc.yml
vendored
2
.github/workflows/make.doc.yml
vendored
@@ -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
|
||||
|
||||
2
.github/workflows/whitespace.yml
vendored
2
.github/workflows/whitespace.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user