Write field on issues returned by JQL Query or Issue List to transition not working

Issue #571 resolved
ME created an issue

I'm using your Post Function write field on issues returned by JQL Query or Issue List to transition all issue that are in status B to status C when I transition a new issue that is assigned from status A to status B (as we only want each user to have only 1 issue in status B at a given time assigned to him).

However it's not doing anything.

Image 1.png

The transition for moving from status B to status C has not conditions or validators.

Please assist

Comments (4)

  1. Fidel Castro Armario repo owner

    Hi Moshe,

    You should use the following JQL query:

    project = HBTIA and assignee = "%{00003}"
    

    where %{00003} is field code for Assignee.

  2. Fidel Castro Armario repo owner

    To avoid transitioning current issue use the following JQL query:

    project = HBTIA and assignee = "%{00003}" AND issuekey != %{00015}
    

    where %{00003} is field code for Assignee, and %{00015} is field code for Issue key.

  3. Log in to comment