Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,538
Community Members
 
Community Events
184
Community Groups

Creating issue in post function depending on summary of linked issue

Hi all,

my request is the following:

I want to create a new issue within a post funtion and set a condition depending on the already existing linked issues to the current issue. Means, the transition should check, if a linked issue with a certain summary already existis and if yes, then the issue should not be created within the post function. If it doens't exist, the issue should be created. 

We are using JMWE Plugin for creating issues within a post function.

Hope, someone can help me.

BR
Franzi

2 answers

1 accepted

0 votes
Answer accepted
David Fischer _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Dec 02, 2021

Hi @Franzi Joseph 

you can use something like this as the Conditional Execution script:

!issue.getLinkedIssues().any{it.summary == "A summary"}

Hello,

thank you but it seem like this doesn't work properly as it always returns "true" even if I enter something senseless

2021-12-03 10_30_10-Update Workflow Transition Create _ Clone issue(s) (JMWE app) Function - Brodos .png

BR
Franzi

David Fischer _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Dec 03, 2021

@Franzi Joseph ,

that's kind of normal: you want the post function to run unless there is a linked issue that has the specified Summary, so unless the issue has a linked issue with "tgtihertzh" as its summary, the code will return true.

Don't forget that the post function will run unless the Conditional Execution script returns false (true means continue running, false means "skip")

Oooh ok, so I need the complete name of the summary, not only a part of like "summary contains"... But in this case, this is hard because the summary differs from issue to issue depending on a certain custom field content. Can I also enter the custom field variable in this script like 

!issue.getLinkedIssues().any{it.summary == "SEO package - "custom field xxx""}

Or is there a wy to write the script in a way that doesn't ask for the specific whole summary but only a part if it? 

David Fischer _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Dec 06, 2021

If you want to test for a substring of the summary, you can use this:

!issue.getLinkedIssues().any{it.summary.contains("A partial summary")}

And if you want to test against a summary built from other values:

!issue.getLinkedIssues().any{it.summary == "SEO package - ${it.getAsString("customfield_12345")}"}
Like Franzi Joseph likes this

thanks, this works perfectly now :)

Hello,

I advise you to contact JMWE support, they will always get back to you with a solution.

 

https://innovalog.atlassian.net/servicedesk/customer/portals

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events