-
Notifications
You must be signed in to change notification settings - Fork 0
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
Compliance issue with specification: optional ! is recognized as invalid (RDT-596) #12
Labels
Status: Reviewing
Issue is being reviewed
Comments
kumekay
added a commit
that referenced
this issue
Dec 4, 2023
kumekay
added a commit
that referenced
this issue
Dec 4, 2023
kumekay
added a commit
that referenced
this issue
Dec 4, 2023
kumekay
added a commit
that referenced
this issue
Dec 4, 2023
Hi @wernerfred |
kumekay
added a commit
that referenced
this issue
Dec 14, 2023
tomassebestik
pushed a commit
that referenced
this issue
Dec 15, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the specification rule 1. reads as follows:
When using the following (valid according to conventional commit specification) commit message:
refactor!: redefine pre-commit hooks
The check will fail with an issue in the type:
Which is triggered as the
!
is not recognized as a valid optional char after the type (and optional scope) but before the required terminal colon.Can you add another function that takes care of this?
Maybe no new function is needed but splitting the the message by
!:
OR:
(r"!?:"
) is sufficient/cc @sh0shin
The text was updated successfully, but these errors were encountered: