Versions Compared

Key

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

...

Code Block
parent = "$issue.parent"

Issues in the same sprint

Of course, you can always go to the sprint view and check the issues in the current sprint. But you can also view them without navigating from your current issue. You can also add any fields you want like assignee and story points. In my example, sprint custom field’s ID is 10006 and it will be probably different for your Jira instance. But don’t worry, you can select it from the auto-complete popup.

Code Block
Sprint = "$issue.cf[10006]"

...

Issues this issue is mentioned

Unfortunately, linking issues is a mostly manual process and it is not always properly done. Sometimes relationship between Jira issues is just a mention in comments, description or summary of other Jira issues.

Code Block
comment ~ "$issue.key" OR description ~ "$issue.key" OR summary ~ "$issue.key"

Issues assigned to the same team

cf[10400] = "$issue.cf[10400]"