Commit 5457cdcd authored by Miek Gieben's avatar Miek Gieben Committed by GitHub

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: default avatarMiek Gieben <miek@miek.nl>
parent 5a40a2cd
...@@ -31,6 +31,6 @@ jobs: ...@@ -31,6 +31,6 @@ jobs:
run: | run: |
git add . git add .
if output=$(git status --porcelain) && [ ! -z "$output" ]; then if output=$(git status --porcelain) && [ ! -z "$output" ]; then
git commit -m 'auto go fmt' git commit -s -m 'auto go fmt'
git push git push
fi fi
...@@ -34,6 +34,6 @@ jobs: ...@@ -34,6 +34,6 @@ jobs:
run: | run: |
git add . git add .
if output=$(git status --porcelain) && [ ! -z "$output" ]; then 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 git push
fi fi
...@@ -38,6 +38,6 @@ jobs: ...@@ -38,6 +38,6 @@ jobs:
run: | run: |
git add . git add .
if output=$(git status --porcelain) && [ ! -z "$output" ]; then 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 git push
fi fi
...@@ -31,6 +31,6 @@ jobs: ...@@ -31,6 +31,6 @@ jobs:
run: | run: |
git add . git add .
if output=$(git status --porcelain) && [ ! -z "$output" ]; then 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 git push
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment