mikeal / merge-release

Automatically release all merges to master on npm.
Other
475 stars 65 forks source link

Allow a prefix string before "feat:" #20

Open elliot-nelson opened 4 years ago

elliot-nelson commented 4 years ago

I like to use gitmoji on personal projects, so ideally if my commit message is ":sparkles: feat: something" or ":bento: feat: something" it would still be picked up as a minor version bump.

Maybe instead of a strict "starts with", you could do a regex for feat:|feature: instead.

(If interested I can put up a PR.)

mikeal commented 4 years ago

Sounds good to me, but we’ll need to make sure we can still support the new breaking syntax feat!: and fix!: https://github.com/mikeal/merge-release/issues/26