Hi @Meates Underwoodson
Can I confirm the logic is...
- If a specific set of Customers (Reporters) raises and Issue
- Then add a specific Request Participant
- ...and repeat, for multiple scenarios
...is this correct?
---
If yes, I'd recommend using the If/Else Block condition within your rule to allow for multiple different outcomes.
The rule would look something like this:
- Trigger: Issue Created
- Condition: If/Else Block
- IF...
- Sub-Condition: Issue Fields Condition
- Field = Reporter
- Condition = is
- Value = <Users Here>
- Sub-Action: Edit Issue
- Field = Request Participant
- ELSE-IF...
- Sub-Condition: Issue Fields Condition
- Field = Reporter
- Condition = is
- Value = <Users Here>
- Sub-Action: Edit Issue
- Field = Request Participant
- ...etc
---
A few notes on this rule:
- If Participant is actually "Assignee", you could replace the Field used in the Actions
- You can have multiple "ELSE-IF" sub-rules - just click "Add else" in the left-hand column showing the rule, and add at least one Condition to turn it into an "ELSE-IF" condition
- These rules usually run on the assumption that each IF/ELSE-IF statement is unique - i.e the Reporters/Customers are not the same on any other statement. If they can be, and your results are not optimum, you could use Branch instead for this scenario. It would look something like this for each section of the rule:
- Branch: Related Issues
- Type = Current Issue
- Branch-Condition: Issue Fields Condition
- Field = Reporter
- Condition = is
- Value = <Users Here>
- Branch-Action: Edit Issue
- Field = Request Participant
- ...etc
---
Let us know if this helps!
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.