Dear all,
i want to ask that i want to set the post function to linked issue that match the jql that i wrote like this
but when i check there is no error and the log is look like this
what is actually happened guys? and how to fix it?
Thankyou
Regards,
Nico
the first thing I can see is that you're using issue.fields["Reporter"].accountId. I would replace that with:
issue.fields.reporter._accountId
Explanation:
- using "reporter" instead of "Reporter" guarantees that this will work even if your Jira base language is not English
- using _accountId removes the "accountId:" prefix that is automatically added to the "accountId" field
i already replace it with your advice, but it still not working yet, any other option?
Thankyou
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I only see and INFO post no error.
It even stats post-function success.
Where is the error?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That is also im still figuring out, because the post function is not working when i jump to the issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It might be that your conditional is wrong.
Could you try: {{ issue.fields.issuetype.name == "Story" }}
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.