Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleSteps


Panel
  • Add the Assign to role member post-function to the transition of the issue's workflow.
  • Select Product Managers as the Project Role.
  • Select Conditional execution and write the following condition:

    Code Block
    {{ issue.fields.issuetype.name == "Bug" and issue.fields.priority.name == "Critical" }}



(lightbulb) Transition an issue to In Progress status when the issue is either of High priority or the reporter of the issue belongs to Service Desk Customers Project role

Expand
titleSteps


Panel
  • Add the Transition issuepost-function to the Create transition of the issue's workflow.
  • Select Start Progress as the transition to be triggered.
  • Select Conditional execution and write the following condition:

    Code Block
    {{ issue.fields.priority.name == "High" or issue.fields.priority.name == "Highest" or issue.fields.reporter | isInRole("Service Desk Customers")}}