cuelang.org/go@v0.10.1/internal/ci/checks/testdata/checks.txtar (about) 1 # The commit author is cueckoo@gmail.com. 2 3 -- pass-short -- 4 this is a one-line commit message 5 6 Signed-off-by: cueckoo <cueckoo@gmail.com> 7 -- pass-long -- 8 this message is very long 9 10 So it needs many more paragraphs 11 to explain what it is doing. 12 13 Fixes #123. 14 15 Signed-off-by: cueckoo <cueckoo@gmail.com> 16 -- pass-co-author -- 17 this is a collaborative commit 18 19 Signed-off-by: cueckoo <cueckoo@gmail.com> 20 Co-authored-by: collaborator <collaborator@corp.com> 21 Signed-off-by: collaborator <collaborator@corp.com> 22 -- pass-co-author-repeated -- 23 this is a collaborative commit with repeats 24 25 Repeated trailers can happen due to human error, or when a commit 26 is taken over from a previous author, and they are harmless. 27 28 Co-authored-by: cueckoo <cueckoo@gmail.com> 29 Signed-off-by: cueckoo <cueckoo@gmail.com> 30 Co-authored-by: collaborator <collaborator@corp.com> 31 Signed-off-by: collaborator <collaborator@corp.com> 32 Signed-off-by: collaborator <collaborator@corp.com> 33 -- pass-quoted-embed -- 34 this message quotes an `@embed()` snippet 35 36 Signed-off-by: cueckoo <cueckoo@gmail.com> 37 -- pass-longquoted-embed -- 38 this message quotes a longer `foo: string @embed()` snippet 39 40 Signed-off-by: cueckoo <cueckoo@gmail.com> 41 -- pass-blockquoted-embed -- 42 this message block-quotes a snippet of code 43 44 foo: string @embed() 45 46 Signed-off-by: cueckoo <cueckoo@gmail.com> 47 -- pass-version -- 48 versions like cuelang.org/go@v0.9.0 are okay 49 50 Signed-off-by: cueckoo <cueckoo@gmail.com> 51 -- pass-lone-at -- 52 lone @ characters are also okay 53 54 Signed-off-by: cueckoo <cueckoo@gmail.com> 55 -- pass-email -- 56 email addresses like foo@bar.com are okay 57 58 Signed-off-by: cueckoo <cueckoo@gmail.com> 59 60 -- fail-no-empty -- 61 This message forgot a title 62 which is followed by an empty line. 63 64 Signed-off-by: cueckoo <cueckoo@gmail.com> 65 -- fail-no-signoff -- 66 this message lacks a signed-off-by trailer 67 -- fail-different-signoff -- 68 this message is signed off by a different person 69 70 Signed-off-by: Other Developer <other.developer@corp.com> 71 -- fail-unquoted-embed -- 72 This message does not quote an @embed() snippet. 73 74 Signed-off-by: cueckoo <cueckoo@gmail.com> 75 -- fail-leading-embed -- 76 @embed() may also be at the start. 77 78 Signed-off-by: cueckoo <cueckoo@gmail.com> 79 -- fail-mention -- 80 This is an explicit mention of @someone which we don't do. 81 82 Signed-off-by: cueckoo <cueckoo@gmail.com>