Reflow automatically creates pull requests, ensures the code review is approved, and squash merges finished branches to master with a great commit message template.
MIT License
1.49k
stars
64
forks
source link
Allow for custom commit/merge message templates #223
This introduces a new commit message template (MERGE_COMMIT_TEMPLATE ), and adds the ability to define {{ }} template tags in both this new template and PR templates. Anything inside of the {{ }} is sent to the GitReflow module using public_send; so any method available to GitReflow is available to templates 😄
This introduces a new commit message template (
MERGE_COMMIT_TEMPLATE
), and adds the ability to define{{ }}
template tags in both this new template and PR templates. Anything inside of the{{ }}
is sent to theGitReflow
module usingpublic_send
; so any method available toGitReflow
is available to templates 😄