Hello!
My previous ticket expired so I had to submit new one. My question was how to set automation to match status of child Epic in one project (TXL) to its parent (custom issue type called Feature project) in a different project (ETE).
The suggestion was to add Variable and specify it in the Branch step. Here what I have:
And I can't validate query in JQL. Is my syntax wrong? Or steps are wrong?
thanks for your question.
First thing I saw in your JQL: issuekey
This is not a valid JQL syntax. A single issue key would be referenced like this: key = XYZ-1
Maybe this already solves your problem? If not, it would be good to see the part, where you create the variable.
@Kai Becker in JQL I need to specify variable from previous step. Is my step Create variable correct?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thank you for your response.
You are right, you need to specify the variable from the previous step. You might try a different variable name, as parentLink might be something internally used.
Also I would recommend to log the variable content to the audit log using Log Action. This should return an issue key, if not there is something wrong with the variable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks! I updated to ParentProject. But I think smart value is not correct. This is what I found in documentation about Parent Link: Which one should I choose in this case? i need to specify Parent Link in ETE project for Epic in TXL project. Should this be {{issue.parent.key}} or {{issue.parent.epic.summary}}?
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.
{{issue.Epic Link}} should return the key of the parent epic.
This could also be used directly in your JQL. No need to create a variable here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Kai! I need to return parent issue of an Epic, parent issue is Feature project (custom issue type). What JQL should I use in this case? sorry for bumping with this, I can't find a solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess I got you wrong in the first place. Could you try to use the following as branching JQL:
parentissuesof("{{issue.key}}")
I hope that this should be enough.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.