Currently
|
signoff: |
|
description: 'Add `Signed-off-by` line by the committer at the end of the commit log message.' |
|
default: false |
Expected
Also support:
Co-authored-by: name <name@example.com>
on-behalf-of: @org <name@organization.com>
- More, perhaps?
Implementation
Those might be of use:
git interpret-trailers
git log --format="%(trailers)"
git commit --trailer "Co-authored-by: ..."
On this note, this would be way simpler and less error prone if Git made such attributes to be native to commits instead of being unstructured strings inside of commit messages.
Currently
create-pull-request/action.yml
Lines 33 to 35 in c66b8cb
Expected
Also support:
Co-authored-by: name <name@example.com>on-behalf-of: @org <name@organization.com>Implementation
Those might be of use:
git interpret-trailersgit log --format="%(trailers)"git commit --trailer "Co-authored-by: ..."On this note, this would be way simpler and less error prone if Git made such attributes to be native to commits instead of being unstructured strings inside of commit messages.