How to match an exact phrase for summary on JQL Query ?

Issue #346 invalid
BALAMURUGAN SHANMUGAM created an issue

From the documention, we know summary matching condition can be specified as below in the JQL Query for Issues at destination end, to return list of issues contining Original Issue's summary;

summary ~ "%{00000}"

Above is a Fuzzy matching criteria. For an exact match, JIRA JQL documention refers to use as below;

summary ~ "\"phrase\""

Below when tried in Toolbox post function, it returned errors; summary ~ "\"%{00000}\""

How do we specify the above in Toolbox JQL Query for exact match of a phrase on a summary?

Comments (3)

  1. Fidel Castro Armario repo owner

    Which feature (condition, validator or post-function) of JIRA Workflow Toolbox are you using with that JQL Query?

    Which error message are you getting?

  2. BALAMURUGAN SHANMUGAM reporter

    This is used in post-function.

    Apologies. It is working successfully. I was probably having it wrong earlier, all the below works now.

    summary ~ "\"%{00000}\""

    summary ~ "\"%{00000} - \""

  3. Log in to comment