I've created a very useful Story description field layout for our Project that I'd like to use as a template across every new Story that is created. The plan was to create an automation that edited the Description field of a Story when it was created.
The problem is that when I try to paste the Story description field template into the automation process it only copies the text and none of the emoji's or info panels.
I've tried pasting the Story into an external site justpaste.it to grab the HTML and then paste this into the automation process but this just displays HTML in the description when the Story is created.
Is it possible to use Emoji's and Info panels in the automation process?
How do I go about adding this to the automation process?
Hey Alistair, I figured out how to add emojis after some painful testing.
{{issue.summary.left(0).concat("\ud83d\ude80")}}
{{rocket}}
P.S. If someone can find a less painful way to do this, I'm all ears.
An easier option at Windows machines could be inserting emojii at text as-is with embedded emojii picker (Win + . (dot)) 🚀
One may mention here, that for some old emojiies like 1️⃣. 2️⃣, etc. its worth to add header like h3. 3️⃣ to be rendered as it should
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ville Lahdenvuo The solution you shared worked perfectly for me - I was able to create the emoji variables using your solution, and then use those smart values in different places on further actions in my automation rule.
Thank you so much for going through that painful testing and sharing your solution so clearly, I really appreciate it!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alistair, I'm not sure if emojis can be added via automation but maybe some of these similar questions can help you figure out if it's possible.
As for panels, I have a few automations that add comments to issues with panels added to the comments. This is done through advanced format wiki markup. Modify this URL to include your site name and it should take you to the wiki markup help page. https://SITENAME.atlassian.net/secure/WikiRendererHelpAction.jspa?section=advanced
Here's an example of a panel that uses the same color as the "Info" panel macro in Confluence.
{panel:bgColor=#DEEBFF}
COMMENT BODY
{panel}
When I created this automation I spent time to grab the RGB values of all the Confluence panel macros and cross referenced them against Atlassian's design documentation: https://atlassian.design/foundations/color. To save you the trouble I'll list them below.
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.