-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
slashes confuse the checker? #30
Comments
The following regex is used: Line 16 in f1863db
So it's looking for a Suggestions for a better regex? Unicode letter property? (That won't fix the slash problem.) Maybe just |
How about
-->
If |
LGTM
Mark
…On Fri, Mar 5, 2021 at 3:46 PM Markus Scherer ***@***.***> wrote:
How about
const JIRA_COMMIT_PATTERN = /^([A-Z]+-\d+)\u0020\w/;
-->
const JIRA_COMMIT_PATTERN = /^((CLDR|ICU)-\d+) [\p{L}\p{N}\p{P}\p{S}]/u;
If \p{L} does not work, try \p{gc=L}.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#30 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACJLEMDWSZTMWQOOSHFKEQTTCFULXANCNFSM4YTYBY5Q>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
over on unicode-org/cldr#1085 the following text failed both PR title and Commit title validation:
CLDR-14395 /api/auth endpoints
with "PR must begin with a Jira ticket ID" etc.
Changing to
CLDR-14395 API for …
fixed it. Something with slashes?The text was updated successfully, but these errors were encountered: