The default regex for extracting Jira issues from commits does not handle projects with numbers in the project name, which has been supported in Jira for 7 years or so.
The default regex according to the documentation is:
((?<!([A-Z]{1,10})-?)[A-Z]+-\d+)
How can I adapt this to allow projects with numbers in them, such as "I18N-1234"?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.