-
-
Notifications
You must be signed in to change notification settings - Fork 13
Conversation
Co-authored-by: Laxman <[email protected]>
|
||
Regex to exclude commits based on their title (don't include the initial and final `/`). | ||
|
||
Setting this to `true` will enable the default preset, which may change over time, but is currently: `/^meta|^document|^lint|^refactor|readme|dependencies|^v?\d+\.\d+\.\d+/i` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wondering if this is going to bite the uses, as the input takes the string form of a regex (without the leading and trainling /
). Also as they can not pass in flags for the regex as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking the same, but it says don't include the initial and final `/`)
just in the previous sentence.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That should be cool then (except for the flag part)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah the best solution would be to support a full regex instead of just its textual string. Perhaps there’s an app module for that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thanks @fregante 🎉
Closes #20