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.
I'm creating Jira ticket through Jenkins pipeline.
Jenkins pipeline creates ticket and also add the required description and other fields automatically. It also prints a message at the end of the ticket description. I'm looking for the help in order to remove this message. I have not added such Jenkins configuration which prints this message. Please let me know how can we ignore the message while creating ticket through Jenkins pipeline.
Message (printed at the end of ticket description- Automatically created by: User from Build URL
My Jenkins configuration -
def issueVar = [fields: [ project: [key: 'RWT'],
summary:"test summary",
description: "sample test description",
components: [[name: 'ABC']],
issuetype: [name: 'Task']]]
def newIssue = jiraNewIssue issue: issueVar, site: 'Jira'
echo newIssue.data.key