Hi Team,
I have a scenario here:
- I have a project called --> Change Management -> CHG
What I want to achieve?
- I want to add automatically component lead as a participant in change management project-based ticket under Jira management service
I'm following below instructions , BUT Got stuck on point number (5) --> select Edit request participant. I'm not finding at all where it is ?
Your quick guidance will be highly appreciated
Kind regards,
Muhammad Nazim
Instructions:
In Jira Service Management (JSM), you can automatically add the Component Lead as a Request Participant using Automation Rules. Here’s how you can do it:
Solution: Use Jira Automation Rules
This automation rule will automatically add the Component Lead as a Request Participant when an issue is created.
1️ Open Jira Automation
Navigate to your Jira Service Management Project.
Click on Project settings.
Select Automation.
Click Create rule.
2️ Set the Trigger: Issue Created
Click Add trigger.
Select Issue Created.
Click Save.
3️ Add a Condition: Ensure Component is Set
Click New condition.
Select Issue Fields Condition.
Configure:
Field: Components
Condition: is not empty
Click Save.
4️ Lookup the Component Lead
Click New action.
Select Lookup Issues.
Use this JQL to get the Component Lead:
jql
project = "{{issue.project.key}}" AND component = "{{issue.components.name}}"
Click Save.
5️ Add the Component Lead as a Request Participant
Click New action.
Select Edit Request Participants.
In the "Participants" field, enter:
{{lookupIssues.component.lead}}
Click Save.
6️ Save and Enable the Rule
Click Save.
Turn on the rule.
What Happens Now?
When a new issue is created, the rule:
Checks if the issue has a Component.
Finds the Component Lead using JQL.
Automatically adds them as a Request Participant.
Hi @Muhammad Nazim , welcome to the Atlassian Community and thanks for your post.
Thanks also for the detailed explanation of what you're trying to do.
Unfortunately, it's not yet possible to access through smart values the Component Lead.
There are a few other posts in the community with some workarounds for this https://community.atlassian.com/t5/Jira-questions/Is-it-possible-to-use-components-lead-in-Automation-for-Jira/qaq-p/1640467
Please check out this post and see if it helps you at all.
Best wishes
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.