Versions Compared

Key

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

...

Expand
titleSteps
  • 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")}}

(lightbulb) Link issues that belong to the project with key “BACKEND” and created before 5 days

Expand
titleSteps
  • Add the Link issues to current issuepost-function to the transition of the issue's workflow.

  • Input the JQL expression as:

    Code Block
    project = "BACKEND"
  • Select the “Filter Expression” and input the following condition

    Code Block
    {{ now | date("diff", targetIssue.fields.created, "days")  <=5 }}