Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(is-ignored): ignore merge tag commit messages #2920

Commits on Dec 14, 2021

  1. fix(is-ignored): ignore merge tag commit messages

    Merging a tag in another branch can lead to conflicts.
    In this case, the default Git commit message after resolving the conflicts will be like:
       `Merge tag 'x.y.z'`
    
    Currently, this commit message format is being considered as an error.
    So I updated the wildcards to get a consistent behavior between branch and tag merge:
     - `Merge branch 'a branch'`
     - `Merge branch 'a tag'`
    gaetanmaisse committed Dec 14, 2021
    Copy the full SHA
    b6863f1 View commit details
    Browse the repository at this point in the history