Hi,
I'm looking to build an automation rule to post the contents of a Trello card to Jira (work management).
It seems you can build a rule that will create an issue or task but it does not contain any of the trello card content.
You can do this manually with the Jira button so the functionality exists, i'm just looking to automate it.
Hi @Ben Cuthbert ! What card contents do you need to see within Jira? Just the description? If so, your rule would need to look something like this:
when x happens, create a Jira "Task" with title "{cardname}" and description "{carddescription}" in project "x" in site "x"
Hey Hannah thanks for that!
Attachments as well would be a winner, is that possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It looks like the only fields supported by butler are title and description. Generally, would the attachments be added before or after the card is copied to Jira? If it's before, you could create a separate automation that adds the attachment links to the description.
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.
@Ben Cuthbert let me know if you need help with the automation, but you'll need to use two variables in your rule:
{carddescription} (in order to not override the current description)
{attachmentlink}
So your rule would be something like:
"When an attachment is added to a card, change description to {carddescription} {attachmentlink}"
So the attachment links will always be at the bottom of the description. You may want to format it to make it easier to read like adding dividers or hyperlinking your attachment links. Eg. [{attachmentname}]({attachmentlink})
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.