Hi,
I have a automation test which run and create log file with all the passing and failing Jira's in it like REPORT-121 : PASSED or REPORT-122 : FAILED.
I want to scan the log file and pick all these and label the build with them.
So in Pattern match labeling i put below values
Regex = REPORT-/d+
Labels = \1
Error on label = The labels use the backreference "\1" but the REGEX contains only 0 capturing group(s).
How can i achieve this ?
One of my co-worked helped me.
I needed to put that in the brackets like (REPORT-/d+)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.