Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I have a deadline for an issue at GitHub?

Tags:

git

github

How can I set a deadline for issues at Github?

like image 607
Narine Avatar asked Nov 15 '17 15:11

Narine


People also ask

How do I submit a pull request for issue?

Under your repository name, click Pull requests. In the list of pull requests, click the pull request that you'd like to link to an issue. In the right sidebar, in the "Development" section click . Click the issue you want to link to the pull request.

Who can close an issue on GitHub?

Anyone can close an issue they opened. Repository owners, collaborators on repositories owned by a personal account, and people with triage permissions or greater on repositories owned by an organization can close issues opened by others.

How do I assign an issue to GitHub?

On GitHub.com, navigate to the main page of the repository. Under your repository name, click Issues or Pull requests. Open the issue or pull request that you want to assign to someone. If no one is assigned to an issue or pull request, click assign yourself to assign yourself.


1 Answers

It is not the most intuitive of interfaces, but in Github's Issues view for your project has a tab called Milestones.

With this feature you can set up a Milestone for your project (a release for instance) and set a due date for the milestone.

You can then go back to your list of issues or pull requests, select some and add them to a Milestone.

The Milestone can then track progress (number of issues or pull requests closed divided by the total number assigned to the Milestone)

You can read more about this feature on the Github help pages

like image 181
Gavin Avatar answered Oct 17 '22 07:10

Gavin