The Jira issue key check does not accept numbers as project keys.
In my case a project like CUSTOMERPROJ25 cannot be checked.
The regular expression to identify keys does not accept numbers on the key side .* \[?([A-Z]*)-[1-9]{1}\d*\]?.*
Is it possible to change the regex to .* \[?([A-Z0-9]+)-[1-9]{1}\d*\]?.* or .* \[?([A-Z]+[A-Z0-9]*)-[1-9]{1}\d*\]?.* to also match project keys including numbers.
I know using numbers within the project key is not standard. Another possible solution would be the optional manual configuration of the regex within the .conform.yaml.
Thank you!
The Jira issue key check does not accept numbers as project keys.
In my case a project like
CUSTOMERPROJ25cannot be checked.The regular expression to identify keys does not accept numbers on the key side
.* \[?([A-Z]*)-[1-9]{1}\d*\]?.*Is it possible to change the regex to
.* \[?([A-Z0-9]+)-[1-9]{1}\d*\]?.*or.* \[?([A-Z]+[A-Z0-9]*)-[1-9]{1}\d*\]?.*to also match project keys including numbers.I know using numbers within the project key is not standard. Another possible solution would be the optional manual configuration of the regex within the
.conform.yaml.Thank you!