Conversation
919fe14 to
704285f
Compare
1957bdf to
dd3cb33
Compare
- issue listing - issue get/set/toggle of labels, milestones and open-close status - issue edit of issue - parsing of notification mail to extract repo_slug and issue number - tests of the whole fixes #104 Signed-off-by: Guyzmo <guyzmo+github+pub@m0g.net>
dd3cb33 to
7ab92fe
Compare
b21c023 to
8e1b647
Compare
e37fc3d to
a79d46f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implementing support of issues (only for github ATM) (cf #104)
git hub [<user>/<repo>] issue ls: lists all issues for given or current repositorygit hub [<user>/<repo>] issue ls <issue_id>: shows details of given issuegit hub [<user>/<repo>] issue ls [mark|labels|milestone]: list accepted values for actiongit hub [<user>/<repo>] issue get [mark|labels|milestone]: gets value for given actiongit hub [<user>/<repo>] issue set [mark|labels|milestone] <value>: sets valuegit hub [<user>/<repo>] issue unset [mark|labels|milestone] <value>: unsets valuegit hub [<user>/<repo>] issue toggle [mark|labels|milestone] <value>: toggles valuegit hub [<user>/<repo>] issue edit <issue_id>: launch $EDITOR to edit givenissue_idlist,set,unset,togglea search can be done with a similar query as github's to run bulk actions, using--filter=<filter>where<filter>is a comma separated list of action, values with the action being one ofmark,label,milestone:--filter="label:bug, label:in progress, milestone:1.2milestone:*for all milestonesstate:allfor all opened and closed issuesget,set,unsetandtoggle<issue_id>is-stdin will accept a mail message, and look for githubsMessage-IDpart to extract/and<issue_id>` from it.fixes #104