You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
First of all, I'm a total newbie of Jira automation, so please forgive and feel free to correct any terminology mistakes I would make.
I have a development project called DEV and I have another project called TEST.
For sake of simplicty, let's assume that tasks in DEV board has these possible states:
backlog > in development > qa test > done
And TEST board has these possible states
to do > failed > in progress > done
I've managed to automate the DEV board to create a clone of the tasks in TEST board which are transitioned to the qa test status.
Now what I want to achieve is this:
- When a task in TEST board transitions to DONE from IN_PROGRESS, the related task in DEV board should transition to DONE.
- When a task in TEST board transitions to FAILED from IN_PROGRESS, the related task in DEV board should transition to BACKLOG.
- When a task in DEV board transitions to QA TEST from IN_PROGRESS, one of two things should happen:
a. if task in DEV board already has a clone in TEST board, it should transition to TO DO
b if task in DEV board does not have a clone in TEST board, it should create a clone in TEST board.
I wonder if that's possible? And if so, how can I achieve that?
Transition linked task in another project
For starters you want something like this, and then build from it. Create an automation rule for each of your own rules to keep it simple.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Sercan - Welcome to the Atlassian Community!
Let's take these a one at a time as you will need multiple rules.
Let's deal with the issue in the TEST board moving from DONE To IN PROGRESS.
Create an Automation Rule based on an Issue Transitioned Trigger - use the two statuses as you describe.
Then add a Branch based on Linked Issues
Under the Branch add an action for Transition Issue and then add the statuses that you describe for the action in the DEV board.
Do that one and test it. Then see if you can do the others based on what you have learned.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.