Hi,
I am trying to create a external link to the bit bucket cloud so when users comment on a commit, the bit bucket cloud will translate a number to hyperlink pointing to a redmine ticket link.
Something like this but the comments are still not linked:
Can you please let me know what I am doing wrong? I cant see links in the comments
Link used with format:
http://redmine.test.com/redmine/issues/\1
Regards,
Ram
Found the answer:
Key should be in paranthesis like '(\d+)' for the capture group to work.
This works:
Url: http://redmine.test.com/redmine/issues/\1
Key: ([0-9]{5,9})
Took me some time to figure this out :) lol
R
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.