The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Trigger when subtask is turned into issue and vice versa

Johannes Fuenger
April 17, 2024

Hi there,

i want to kick off a rule in case of a subtask has been turened into an issue. any idea how to set an automation rule which catches this situation. Thanks in advance

Kinde Regards
Johannes 

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

1 vote
Answer accepted
Kalyan Sattaluri
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
April 17, 2024

Hello @Johannes Fuenger 

You can use {{fieldChange.fromString}} & {{fieldChange.toString}} to check..

So, You can set up your rule like below:

  • Trigger = Field Change, choose "Issue Type"
  • If Condition smart values check:
    • {{fieldChange.fromString}}
    • equals
    • Sub-task
  • If Condition smart values check:
    • {{fieldChange.toString}}
    • equals
    • Story
  • Do your steps.

Do note the if condition check is case sensitive. So Sub-task is correct, Sub-Task is not.

Please see screenshot below, share if any issues.

image.png

 

 

Johannes Fuenger
April 17, 2024

Works perfect! Thank you!