Project

gissuel

0.0
No commit activity in last 3 years
No release in over 3 years
Delivering issues to your terminal
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0
~> 3.0

Runtime

~> 4.0
~> 0.20
 Project Readme

Gissuel

Setup

  • gem install gissuel
  • Create GH token with repo access Settings > Developer settings > Personal access tokens
  • Export GITHUB_TOKEN token to environment

Usage

  • Run gissuel get --label [label] --repo [repo-name] --verbose

    For example, I added lines similar to the following to my .zshrc file

    export GITHUB_TOKEN="XXXXXXXXXXXXX"
    gissuel planned semaphoreci/semaphore
    
  • Options are optional

    • --repo (--label) - When not specified, Gissuel will look for any issue that is assigned to token owner. Otherwise, it will only look for specified repo (label).
    • --verbose - when Gissuel is called with this option, it will show text for each found issue
    • --index - combined with above mentioned options, it will print only an issue under the specified ordinal number

Examples

I want to get quick overview of issues assigned to me within semaphoreci/semaphore repo:

gissuel get --repo semaphoreci/semaphore 

I want to list mine issues with label planned:

gissuel get --label planned

I'd like to take a quick look at all issues withing repo semaphoreci/semaphore with label planned assigned to me

gissuel get --repo semaphoreci/semaphore --label planned

Finally, from the last list, I'd like to see description of second issue

gissuel get --repo semaphoreci/semaphore --label planned --index 2 --verbose