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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
In the old view you could paste in several issue keys/numbers (separated by whitespace) into the link text box, and it would link them all to a single ticket. The new view doesn't allow you to do that. I get an error saying the it can't find the issue with the given key.
How do you do this in the new view? It will be very tedious to have to link 100 issues to one ticket one at a time. For now I will just switch back to the old view to do this.
As pointed out previously, I do not believe this functionality exists in the "new view" yet either.
I found myself in the same position and ended up resorting to using the Jira REST API - in particular, the "Create issue link" endpoint.
Below is a solution that uses Node.js to link an arbitrary number of issues to a single issue
mkdir linking-jira-issues
npm init
npm install node-fetch
node index.js
As long-winded as it is, that should hopefully link all the tickets you specify to a single Jira ticket without having to do each one manually in the UI.
Thank you. I finally got around to testing this and it works.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think this functionality has been implemented yet, however, there have been numerous requests for this feature. Refer to the following: link multiple issue requests
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.