Can I change the state of a Github problem? Open> Verification Required> Closed

It would be great if the Github problem were in the "Resolved" intermediate state before I close the problem.

Right now I have the label "Resolved", and I manually select the problem and change it on the label on the Internet after committing. Is there a way to do this from a commit message?

I am sure this is a common problem. How do you guys solve this?

I have never used the Github API, but this can be done using the API. If I did it myself?

+4
source share
3 answers

No, Github issues support only two states (open and closed). Any other “states” should be implemented using labels, as you are already doing right now. And as of the moment, it is not possible to apply labels from commit messages.

You can always request such functions from Github support, and they can be implemented at some point.

+3
source

From September 14, 2016 you can manage your staff projects. See image below:

Link and source: GitHub - the whole new GitHub Universe: the announcement of new tools, forums and functions .

I know this is not like a new state like “needs to be checked” because you will not like @NevikRehnel in his answer. But you can make a column with the name “open”, “need verification” and “closed”, and all problems can be listed in the correct column.

+3
source

You can solve this problem with this method: Adding and reassigning github problems through a commit message .

A simple ruby ​​script will run on each commit and checks for a commit message looking for ~myLabel and =assignedMember to properly update the problem.

+1
source

All Articles