summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorone-d-wide <one-d-wide@protonmail.com>2024-01-10 17:35:22 +0000
committerPaul Donald <itsascambutmailmeanyway@gmail.com>2024-01-12 00:34:54 +0100
commitb421c38290b4d727248b158888d729b274c27152 (patch)
tree9417bc42fad320246d2883cc37a226aed260d384 /.github
parent4433701463876fd8fefef9659dcd7b7aa18ede03 (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: one-d-wide <one-d-wide@protonmail.com>
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 b3f824c524..c1a039d2e0 100644
--- a/.github/workflows/formal.yml
+++ b/.github/workflows/formal.yml
@@ -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 '; then
success "Commit subject line seems ok ($subject)"