aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPaul Spooren <mail@aparcar.org>2024-01-10 17:21:01 +0100
committerPaul Spooren <mail@aparcar.org>2024-01-11 10:09:03 +0100
commit2d4552a96c7e5d44f9caaf1367e2be9d3775afae (patch)
treec70b597351f984b2878c5867a0fde8f47b2dc6dc /.github
parent3df9322771cc932e5b82438634337fcca6cc97bc (diff)
ci: no longer require real name
This goes in accordance with the Linux Kernel: > using a known identity (sorry, no anonymous contributions.) https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?id=HEAD#n442 Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/formal.yml8
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/formal.yml b/.github/workflows/formal.yml
index 8083c5832c..1532591dfc 100644
--- a/.github/workflows/formal.yml
+++ b/.github/workflows/formal.yml
@@ -37,14 +37,6 @@ jobs:
RET=1
fi
- author="$(git show -s --format=%aN $commit)"
- if echo $author | grep -q '\S\+\s\+\S\+'; then
- success "Author name ($author) seems ok"
- else
- err "Author name ($author) need to be your real name 'firstname lastname'"
- RET=1
- fi
-
subject="$(git show -s --format=%s $commit)"
if echo "$subject" | grep -q -e '^[0-9A-Za-z,+/_\.-]\+: ' -e '^Revert '; then
success "Commit subject line seems ok ($subject)"