The following is my scenario
There are 2 ways of creating issues in the repository
1. Importing from a CSV file ( 1000 issues for each import )
2. Creat an issue in regular Jira process i.e create issue link
We need to stop notifications to reporter while importing from csv file because the reporter gets notified for every new issue he creates. However he needs to get a notification while he creates an issue using regular Jira process i.e create issue link.
How can we do this ? Anykind of input will be appreciated to fix this scenario.
Hello,
You can create a project and set its notification scheme to "none" while importing the data from CSV. After the import, set the notification scheme to the previous one.
You can also disable only the "Issue Created" event on the existing notification scheme while importing and enable it after that.
Best regards,
Lucas Timm
When importing the issues from a csv file the issues are assigned to "Project Lead" instead of Default assignee "Unassigned" . I have checked the components Default assignee is Project Default and Default assignee is Unassigned. Is this a bug in Jira 5.2.4 ? Has anyone encountered similiar kind of issue in Jira 5.2.4 ? |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found a solution by adding the following line , while setting the notification scheme to "none"
jira --action updateProject --project "zjiracliX" --defaultAssignee "unassigned" notificationscheme none
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Was thinking of other options that achieve this, and I could only think about this (they are not direct answers):
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am trying to import issues from a CSV file with (1000 issues). I am using runfromCSV to import the issues but i am disabling the notification scheme and making sure the default assignee is Unassigned but i am getting errors. Please help me to solve the following issues .
def runJenkinsStep2 = "cmd /c //myJiraInstance/JenkinsHome/userContent/Atlassian/jiraTest.bat --action runFromCsv --file $sourceFile --propertyFile $propertyLocation --common \"--project $projectKey\" --continue "
def runJenkinsStep3 = "cmd /c //myJiraInstance/JenkinsHome/userContent/Atlassian/jiraTestAdmin.bat --action updateProject --project $projectKey --notificationScheme \"Default Notification Scheme\" --defaultAssignee unassigned "
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.