I am setting up an advanced roadmap plan and have created teams, but I cannot find any information or evidence of the purpose of setting up the team members. I was expecting setting teams members would be used to auto-assign tickets to a Team, but that does not seem to be the case.
Hi @Manouil Gioulountas - There are two primary purposes for teams:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry - I misread the question. They primarily play into the auto-scheduler capability. It doesn't necessarily care about individual team members as much as how many individuals make up the team to calculate how many issues can be taken on in parallel for a given sprint. Here's more info on it:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I see. This was my assumption but was hoping I was wrong. A shame, but thank you for the info.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you're looking for automated team assignments, there are a couple possibilities:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Interesting, but that sounds more oriented toward assigning tickets to people rather than assigning tickets to teams. Though I assume the automation option would conversely allow setting a team.
Either way, I have zero experience with Jira automation. I don't even know if it is available to me, will have to read up on it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Automation isn't too bad. It can get very complex, but the basic principles are that there are 4 types of components that can make up a rule:
For this case, it does require a little bit more complexity, but it's possible:
First, you need the ID's of each Team that you wish to assign. The easiest way to get this is by executing a search:
"Team[Team]" = YourTeamName
As you execute the search, Jira will convert the team name to its ID
Next is the automation rule. For my example below, I'm setting the team when the issue is created:
{"fields": {"customField_10001": "1"}}
Note - This rule will simply apply the same team to every issue that's created. If that meets your need, great. Otherwise, you'll want to play with If/Else conditions. I can help with that, I just need the business logic that will determine how the rule will know which team should be assigned the issue.
I hope this helps.
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.