Hi All:
I have an IFTTT integration that creates the JIRA ticket:
I also have a url field in the Confiforms called ConfluencePageName (this is a url)
is there a way for my to add the field ConfluencePageName to the description field in JIRA so users can access the url?
As per https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=all
You can do something like
[[entry.ConfluencePageName]]
Alex
not sure that works. When I try the solution I get a JSON error:
JIRA Issue CreatedCould not prepare JSON: '{ "fields": { "project":{ "key": "CFADPF"}, "issuetype": { "name" : "Feature" }, "priority": { "name": "Medium" }, "summary" : "TEsts Prevent Intake - html LInk - NO ACTION REQUIRED", "labels" : ["CIT-Generated-Request","partner-led"], "description" :"*Project Funded:* No\n\n*Intake Reference:* FY2024-595\n\n*Confluence Page Reference*[FY2024-595: TEsts Prevent Intake - html LInk - NO ACTION REQUI Intake Meeting]\n\n*Project Overview:* This is the Project Overview.\n\n*Problem Statement:* This is the Problem Statement\n\n*High Level Requirements:* These are HL Requirements: 1, Email notification to go out to Ali, Nehal and Roy, whenever a JIRA Issue is created on CFADPF from the Intake Form Rayman Comments: This is complete (sample of email attached) 2. In the description field, also pass on the following a. Project Funded: Yes or No b. Confluence Link included to the Intake Request c. Project Overview (see screenshot below) d. Problem Statement (see screenshot below) e. High Level Requirements (see screenshot below) f. Fraud Impact (see screenshot below) g. Fraud Benefits (see screenshot below) h. Operational\/Financial Key Results (see screenshot below) 3. Pass the Label field populated as: Fraud Funded OR Partner Funded 4. Pass a label as CIT-Generated-Request so that we can differentiate on what was created within our JIRA project vs what as logged from the CIT form\n\n*Fraud Impact:* This is where the Fraud Impact would go\n\n*Fraud Benefits:* These are the Fraud Benefits\n\n*Operational/Financial Key Results:* Put any OKR's here\n\n", } }'. Invalid format. Expected a ',' or '}' at 410 [character 120 line 8]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, is it an url or a piece of html representing a link!?
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.
what is full url? HTML representing a link?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is what it looks like on the form
<a href=https://collaborate.td.com/pages/viewpage.action?pageId=2384513881>FY2024-581: FICO MCOM Intake Meeting</a>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK, a piece of HTML
Try this then
[[entry.ConfluencePageName.htmlToWiki]]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Alex, that worked! I didn't need the first brace brackets, so the solution was this:
[entry.ConfluencePageName.htmlToWiki]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, right... as it will already be a wiki markup with all the necessary things
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.