{"id":25732424,"url":"https://github.com/vigo/gh_issues","last_synced_at":"2025-05-07T18:53:19.789Z","repository":{"id":56874117,"uuid":"66715451","full_name":"vigo/gh_issues","owner":"vigo","description":"Manage GitHub issues from command-line (read only!)","archived":false,"fork":false,"pushed_at":"2024-03-13T09:52:49.000Z","size":190,"stargazers_count":22,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-21T11:59:00.405Z","etag":null,"topics":["cli-app","github-issues","rubygem"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vigo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":"vigo","patreon":"vigoo"}},"created_at":"2016-08-27T13:18:55.000Z","updated_at":"2024-02-23T21:00:38.000Z","dependencies_parsed_at":"2024-03-22T08:55:25.698Z","dependency_job_id":null,"html_url":"https://github.com/vigo/gh_issues","commit_stats":{"total_commits":36,"total_committers":1,"mean_commits":36.0,"dds":0.0,"last_synced_commit":"9f5ccdab54d086c2a970dc965b9cabd2207ad02d"},"previous_names":["vigo/gh_issues","vigo/gh-issues"],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Fgh_issues","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Fgh_issues/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Fgh_issues/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vigo%2Fgh_issues/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vigo","download_url":"https://codeload.github.com/vigo/gh_issues/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252939790,"owners_count":21828755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli-app","github-issues","rubygem"],"created_at":"2025-02-26T03:40:58.021Z","updated_at":"2025-05-07T18:53:19.749Z","avatar_url":"https://github.com/vigo.png","language":"Ruby","funding_links":["https://github.com/sponsors/vigo","https://patreon.com/vigoo"],"categories":[],"sub_categories":[],"readme":"[![Gem Version](https://badge.fury.io/rb/gh_issues.svg)](https://badge.fury.io/rb/gh_issues)\n![Powered by Rake](https://img.shields.io/badge/powered_by-rake-blue?logo=ruby)\n\n# GitHub Issues\n\nManage your GitHub issues from command-line. If you are dealing with huge\namount of repos, this tool will become more handy.\n\n## Idea\n\nI need this tool for couple of reasons:\n\n1. list all issues of my all repositories without knowing the repo url.\n1. list a specific issue from a specific repo with full details.\n1. see my current issues which are related to GitHub account.\n\n## Installation\n\nThis is a command-line client. You can install via:\n\n```bash\n$ gem install gh_issues\n```\n\nor,\n\n```bash\n$ gem install gh_issues --version \"0.4.10\" --source \"https://rubygems.pkg.github.com/vigo\"\n```\n\n## Usage\n\nYou need to create a [GitHub token](https://github.com/settings/tokens/new) or \nuse existing token of yours. Set your environment variable as:\n\n![GitHub token settings](github_token.png)\n\nIf you don’t want this app to access your **private repos** please check only: **public_repo**\n\n***\n\n```bash\nexport GH_ISSUES_TOKEN=your-token-here\n```\n\nIf you like to get colored output by default, set:\n\n```bash\nexport GH_ISSUES_COLORIZE=1\n```\n\nYou can change your date format via `GH_ISSUES_DATE_FORMAT` variable. Default\nvalue is : `%d %B %Y, %H:%M, %A`. This is `Time.strftime` format. More\ninformation can be found [here](http://ruby-doc.org/core-2.3.0/Time.html#method-i-strftime).\nSet your default such as:\n\n```bash\nexport GH_ISSUES_DATE_FORMAT='%A %B %-d, %Y,  %H:%M' # example\n```\n\n\nAll commands:\n\n    Commands:\n      gh_issues all                            # List all open issues, grouped by owner\n      gh_issues help [COMMAND]                 # Describe available commands or one specific command\n      gh_issues list OWNER_NAME                # List issues belongs to owner\n      gh_issues show REPO_NAME [ISSUE_NUMBER]  # Show issues of REPO_NAME or ISSUE\n      gh_issues version                        # Version information\n\n    Options:\n      [--color], [--no-color]  \n      [--sort-by=count]        \n                               # Default: name\n      [--sort-order=desc]      \n                               # Default: asc\n\n\n### all\n\nLists all repos with open issues. Here is my repos:\n\n    +------------------------------------------+-----------+\n    |                          f                           |\n    +------------------------------------------+-----------+\n    | f/atom-bootstrap3                        |        23 |\n    +------------------------------------------+-----------+\n    |                                                   23 |\n    +------------------------------------------+-----------+\n    |                  gelistiriciyiz-biz                  |\n    +------------------------------------------+-----------+\n    | gelistiriciyiz-biz/gelistiriciyiz.biz    |         1 |\n    +------------------------------------------+-----------+\n    |                                                    1 |\n    +------------------------------------------+-----------+\n    |                      pyistanbul                      |\n    +------------------------------------------+-----------+\n    | pyistanbul/docs                          |         1 |\n    | pyistanbul/itspython                     |         1 |\n    | pyistanbul/website                       |        10 |\n    +------------------------------------------+-----------+\n    |                                                   12 |\n    +------------------------------------------+-----------+\n    |                      thoughtram                      |\n    +------------------------------------------+-----------+\n    | thoughtram/git-master-class-exercises    |         1 |\n    +------------------------------------------+-----------+\n    |                                                    1 |\n    +------------------------------------------+-----------+\n    |                         vigo                         |\n    +------------------------------------------+-----------+\n    | vigo/gh-issues-test                      |         4 |\n    | vigo/git-tips                            |         1 |\n    | vigo/ruby101-kitap                       |         1 |\n    | vigo/textmate-twitterbootstrap.tmbundle  |         1 |\n    +------------------------------------------+-----------+\n    |                                                    7 |\n    +------------------------------------------+-----------+\n    |                       webBoxio                       |\n    +------------------------------------------+-----------+\n    | webBoxio/atom-backbone                   |         3 |\n    | webBoxio/atom-color                      |        16 |\n    | webBoxio/atom-hashrocket                 |         4 |\n    | webBoxio/atom-html-preview               |        47 |\n    | webBoxio/atom-htmlizer                   |         2 |\n    | webBoxio/atom-ios                        |         1 |\n    | webBoxio/atom-powersnap                  |         2 |\n    | webBoxio/playbook                        |         1 |\n    | webBoxio/ws-coffee                       |         1 |\n    +------------------------------------------+-----------+\n    |                                                   77 |\n    +------------------------------------------+-----------+\n    | Total amount                             |       121 |\n    +------------------------------------------+-----------+\n    \n### list\n\nList single repo’s issues:\n\n```bash\ngh_issues list pyistanbul\n\n+----------------------+------+\n|         pyistanbul          |\n+----------------------+------+\n| pyistanbul/docs      |    1 |\n| pyistanbul/itspython |    1 |\n| pyistanbul/website   |   10 |\n+----------------------+------+\n|                          12 |\n+----------------------+------+\n| Total amount         |   12 |\n+----------------------+------+\n```\n\n### show\n\nShow selected repo’s issues or show current GitHub repo’s. If you are in a\nfolder with a git repo which has github **origin** you don’t need to type\nrepo name!\n\n```bash\ngh_issues show   # you are in a git repo, origin is pointed to GitHub\ngh_issues show pyistanbul/website\n```\n\nHere is the list:\n\n    +-----+-----------------------------------------------------------------+-------------------------------------------------+\n    |     | pyistanbul/website                                              | Url                                             |\n    +-----+-----------------------------------------------------------------+-------------------------------------------------+\n    | #53 | Sunum linkinin zorunlu olması                                   | https://github.com/pyistanbul/website/issues/53 |\n    | #52 | [admin] Jobs listesinde pozisyon adı ve şirket adı listelenmeli | https://github.com/pyistanbul/website/issues/52 |\n    | #51 | [jobs] İlanı yayından kaldırmak için seçenek eklenmesi          | https://github.com/pyistanbul/website/issues/51 |\n    | #49 | Sunum başvuruları için form                                     | https://github.com/pyistanbul/website/issues/49 |\n    | #48 | Issue #5: Auth, Social Auth, Profile Sayfalari                  | https://github.com/pyistanbul/website/pull/48   |\n    | #47 | Sitenin database dump'ı?                                        | https://github.com/pyistanbul/website/issues/47 |\n    | #46 | Sunumlar sayfasına etkinlik bilgilerinin entegre edimesi        | https://github.com/pyistanbul/website/issues/46 |\n    | #43 | Sirketler tablo sayfasi                                         | https://github.com/pyistanbul/website/issues/43 |\n    | #10 | Implement Facebook Open Graph meta tags                         | https://github.com/pyistanbul/website/issues/10 |\n    | #5  | Profil sayfası                                                  | https://github.com/pyistanbul/website/issues/5  |\n    +-----+-----------------------------------------------------------------+-------------------------------------------------+\n    \nIf you pass **issue number** as parameter after repo name, you get the issue details:\n\n```bash\ngh_issues show pyistanbul/website 48\ngh_issues show 2 # you are in a git repo, origin is pointed to GitHub, issue #2\n```\n\nResult:\n\n    +------------+--------------------------------------------------------------------------------+\n    | Repo/Issue | pyistanbul/website/48                                                          |\n    +------------+--------------------------------------------------------------------------------+\n    | Title      | Issue #5: Auth, Social Auth, Profile Sayfalari                                 |\n    +------------+--------------------------------------------------------------------------------+\n    | Opener     | bahattincinic                                                                  |\n    +------------+--------------------------------------------------------------------------------+\n    | Created at | 08 May 2015, 21:18, Friday (481 days ago)                                      |\n    | Updated at | 19 May 2015, 14:11, Tuesday (470 days ago)                                     |\n    +------------+--------------------------------------------------------------------------------+\n    | Body       | [ ] Profil Guncelleme sayfasinin yapilmasi.                                    |\n    |            | [ ] Kullanici ile People merge edilmesi.                                       |\n    |            | People ile kullanici modelini view/template de merge edicektim ama cok hosuma  |\n    |            | gitmedi. acaba direk modeli ucursak da User tablosuna initial olarak koysak mi |\n    |            | veya datamigration @berkerpeksag                                               |\n    |            | Yukaridaki 2 madde kaldi. Onlari yapiyim oyle merge ederiz. Bu arada yorum     |\n    |            | varsa da hemde tartismis oluruz.                                               |\n    |            | Yaptigim profil sayfasi su. Baya kotu oldu inline css falan yazdim. Fatihin    |\n    |            | ustunden gecmesi lazim :trollface:                                             |\n    |            | [screen shot 2015-05-07 at 11 19 31 pm ]-[link]                                |\n    +------------+--------------------------------------------------------------------------------+\n    \nAlso, if the selected issue has comment(s):\n\n    +------------+---------------------------------------------------------+\n    |                             Comments (2)                             |\n    +------------+---------------------------------------------------------+\n    | vigo       | Comment 1                                               |\n    |            | ---                                                     |\n    |            | 03 September 2016, 17:09, Saturday (1 day ago)          |\n    +------------+---------------------------------------------------------+\n    | vigo       | Comment 2                                               |\n    |            | ---                                                     |\n    |            | 03 September 2016, 17:09, Saturday (1 day ago)          |\n    +------------+---------------------------------------------------------+\n\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, \nrun `bundle exec rake test` to run the tests. You can also run `bin/console` for an \ninteractive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To \nrelease a new version, update the version number in `version.rb`, and then \nrun `bundle exec rake release`, which will create a git tag for the version, \npush git commits and tags, and push the `.gem` file to \n[rubygems.org](https://rubygems.org).\n\nOr, you can use `bumpversion` (python) too :)\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at \nhttps://github.com/vigo/gh_issues. This project is intended to be a safe, \nwelcoming space for collaboration, and contributors are expected to adhere to \nthe [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n\n## License\n\nThe gem is available as open source under the terms of the \n[MIT License](http://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvigo%2Fgh_issues","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvigo%2Fgh_issues","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvigo%2Fgh_issues/lists"}