Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Assign GitHub issue to multiple people

Tags:

How do I assign a GitHub issue to more than one person?

I have work in project with my colleagues using GitHub repository. If I create an issue I can assign it to one user, but sometimes I need to assign it to multiple people.

like image 288
sergio Avatar asked Jan 06 '14 19:01

sergio


People also ask

How do I assign multiple people to GitHub?

Assignees can be added and removed on the web UI by clicking on the assignees dropdown in the sidebar and adding multiple users.

How do I add participants to a GitHub issue?

On GitHub.com, navigate to the main page of the repository. Under your repository name, click Issues or Pull requests. Select the checkbox next to the items you want to assign to someone.

Can you assign an issue to yourself?

You can also assign an issue to yourself. Simply click on “Assign to me”. Then, you can add a comment and mention the user that has been assigned the issue. Type the @ (at) key and search for their name in the list or start typing their name and click on it when it appears.

What does assignee mean in GitHub?

According to official github documentation, Assignee is a person who is working on specific issues and pull requests. It is sometimes confused as a reviewer. It is actually meant to be used with issues rather than pull request so that when we receive a issue we can assign someone to fix it.


2 Answers

You could assign the issue to one of them and @-mention the GitHub usernames of the others, which will subscribe them to updates for that issue. If you have groups of people who will often be assigned together, you could also create teams within an organization to mention them all at once.

UPDATE: GitHub just shipped multiple assignees, so, now you can!

like image 124
Ash Wilson Avatar answered Sep 19 '22 06:09

Ash Wilson


Here is the info on Multiple assignees on Issues and Pull requests

I couldn't find any update on the topic, but it seems that Github changed the assignees' policy and now in the public projects you can assign up to 10 people:

Assignees form for public repos

But on the private projects you are limited back to a single person:

Assignees form for private repos

So basically, you need to do the already mentioned approach (with @ in the issue text)

like image 20
mPrinC Avatar answered Sep 20 '22 06:09

mPrinC