ci: no longer require real name 23084/head
authorPaul Spooren <mail@aparcar.org>
Wed, 10 Jan 2024 16:22:54 +0000 (17:22 +0100)
committerPaul Spooren <mail@aparcar.org>
Wed, 10 Jan 2024 16:22:54 +0000 (17:22 +0100)
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>
.github/workflows/formal.yml

index 1447a395991e5751759179dd08893a1dc09bcd73..693befa062aed3996a70c2558981272bbef07847 100644 (file)
@@ -34,14 +34,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 ' -e '^CONTRIBUTING.md' -e '^README.md'; then
               success "Commit subject line seems ok ($subject)"