janhoy opened a new pull request, #3809:
URL: https://github.com/apache/solr/pull/3809

   https://issues.apache.org/jira/browse/SOLR-17619
   
   Context: Running `./gradlew newChangelog` generates a logchange yaml based 
on git branch name.
   
   The old regex matched any number in the branch name, so `SOLR-1234-New 
feature` would add `issue: 1234` to the changelog yaml. Reason was the extra 
`?` after the parenthesis which makes it optional. The new regex matches 
strictly one of
   
   * `PR-123`
   * `GH-123`
   * `GITHUB-123`
   * `#123`
   
   These will also match due to the `#123` part, not the prefix
   * `PR#123`
   * `GH#123`
   * `GITHUB#123`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to