Hi,
So I manage several projects that have the following structure.
Issues have custom fields:
1. Assigned Dev
2. Assigned QA
3. Assigned Reviewer
4. Assigned Dev Ops
And statuses are:
1. In Development
2. In Testing (BETA)
3. In Review
4. Verified (Pending Deployment)
5. In Testing (LIVE)
6. Done
I want to add automation to change the assignee of the issue based on it's status.
I want to do it like this:
When status -> "In Development", change the assignee to Assigned Dev
When status -> "In Testing (BETA)" or status -> "In Testing (LIVE)", change the assignee to Assigned QA
When status -> "In Review", change the assignee to Assigned Reviewer
When status -> "Verified (Pending Deployment)" change the assignee to Assigned Dev ops
Is this doable without adding a custom script?
I am open to any and all solutions. If custom script is the only solution, I would appreciate it if someone can point me towards a good tutorial/documentation on JIRA custom scripts.