[WIP] 🚧 Support of issues management #112
Open
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_id
list
,set
,unset
,toggle
a 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.2
milestone:*
for all milestonesstate:all
for all opened and closed issuesget
,set
,unset
andtoggle
<issue_id>
is-
stdin will accept a mail message, and look for githubs
Message-IDpart to extract
/and
<issue_id>` from it.fixes #104