I have a project A issue with multiples projects B,C,D linked issues (I don't have access to the others projects automation part)
When one linked issue is closed i want to send a Teams message telling me that X linked issue linked to "Project A issue" is now closed.
To bypass the fact that i can't directly create an automation on the others projects i tried this :
Trigger : Field value changed
Advanced compare condition :
Then send a Teams
But it doesn't work. When i check the audit log of the automate there is nothing in it. It's like it doesn't even match the condition for it to start
Thanks for your help !
Hey @Pilotage VSCT here's an idea - create a scheduled rule to check the status of linked issues and send an automated Teams message if it discovers a newly closed linked issue.
1. Set the Trigger to Scheduled and choose a sensible timeframe (e.g. every hour)
2. Set the Action using JQL:project = A AND issueLinkType is not EMPTY
3. Set the Condition as: If {{issue.status.id}} equals 6(Closed)
4. Action: Send Teams message:
"Linked issue {{issue.key}} ({{issue.summary}}) for Project A issue {{triggerIssue.key}} is now closed."
Hope that's a good solution for you - if not let us know, happy to help you fine tune it.
Hi @Pilotage VSCT -- Welcome to the Atlassian Community!
Short answer: the rule you describe is triggered on issue linking but you seem to want to trigger it on a status transition instead...and have the rule use multiple project scope to cover all of the issues involved.
If that does not help, context is important for the community to help. Please post the following:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there any available trigger to match what i want (a linked issue transition) without a multipe project scope ?
Ex : Everytime the field {{issue.issuelinks.outwardIssue.fields.status.id}} change check if the value is set to 6. If yes, send a message.
I understand that's the easiest solution would be to create an automate in the projects B,C,D like this :
But i can't do it like this for now...
Thanks for you help @Bill Sheboy !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The rule scope determines what is "visible", and so to detect this when the transition happens, you would need either:
And the rule you show in each project could only detect the links through the smart values but it cannot branch to them for a single-project scoped rule.
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.