You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi @IT Admin
what exactly do you mean? could you specify your requirement more detailed? what are you trying to achieve?
best
Stefan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @IT Admin
the following smart value shoulde do the work:
{{issue.url}}
see smart value doc:
https://support.atlassian.com/cloud-automation/docs/jira-smart-values-issues/
Best
Stefan
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.
Hi @IT Admin
if your problem is solved please consider to hit the accept button mext to the answer. This will mark the question as solved and males it easier for other users to find solutions to similar problems.
Best
Stefan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the context of Jira, a widely used project management tool, the JSON code for issue links typically involves a structure that defines the relationship between issues. The "outwardIssue" and "inwardIssue" fields are commonly used to specify the linked issues. An example JSON snippet might look like this:
{
"type": {
"name": "Blocks",
"inward": "is blocked by",
"outward": "blocks"
},
"outwardIssue": {
"key": "ISSUE-1"
},
"inwardIssue": {
"key": "ISSUE-2"
}
}
This represents a "Blocks" relationship where "ISSUE-1" blocks "ISSUE-2". The actual JSON structure can vary based on the specific requirements and the tools or platforms being used.
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.