Hello,
I recently implemented the automation rule, that a message will be send to slack as soon as a version has been released.
Usually:
A message will be sent in our Slack Channel after a Version has been released.
The automation rule looks up the issue and the project.
Problem now:
The message usually included the version name and the issue link.
The Issue link is now missing in the message
You can see the error and audit log in the Screenshot:
Also example of how the message usually looks and how it looks without the issue tagged:
Please let me know if you have any idea why it is not working anymore.
I have changed nothing.
Thanks in advance!
Regards,
Vanessa
Hi @Vanessa
Version name used in fixedversion field have space inside. Please put version name in ""
Regards,
Seba
Where do you mean exactly?
In the Issue itself? I looked and there is no space in the version.
Otherwise please help me understand where you want me to change something :)
thanks in advance!
Regards,
Vanessa
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Vanessa
Your version name is core2azure_data_upload_svc_v1.1.20 but automation recognize only core2azure_data_upload_svc_ and expect AND/OR operator before v1.1.20.
My advise is to put version name in "" to avoid this. JQL should be fixVersion="core2azure_data_upload_svc_v1.1.20"
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.
version.name is a smart value so it should be
fixVersion = "{{version.name}}"
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.