0.2.0 • Published 6 months ago

octokit-cli v0.2.0

Weekly downloads
192
License
MIT
Repository
github
Last release
6 months ago

octokit-cli

A cli for @octokit/rest.

NOTE: This a WIP side-project. If you want to see this project do something it doesn't feel free to contribute! Currently the descriptions could use some work.

Features:

:rocket: Run any octokit endpoint from the CLI

:rocket: Automatically detect certain args in CI (owner, repo, issue_number)

Example showing fuzzy searching for an emoji

Installation

You can either install octokit-cli to your project:

npm i --save-dev octokit-cli
# or
yarn add -D octokit-cli

Or globally on your computer:

npm i -g octokit-cli

Usage

Most commands require authentication to work. To authenticate create a personal-access-token then set GH_TOKEN to the token.

Locally you can add your GH_TOKEN to a file at the root of your project named .env.

GH_TOKEN=YOUR_PERSONAL_ACCESS_TOKEN

Now when you run octokit-cli you do not have to include your GH_TOKEN.

Commands

octokit-cli is a thin wrapper around @octokit/rest so it has a very similar API.

To get help for every command just add the --help flag.

Examples

Create a status on a PR:

octokit repos create-status --owner hipstersmoothie --repo octokit-cli --state error --sha b3859f9e787145c904aee28668e20960b8407e2 --context "My Status"

Create a comment on a PR:

octokit issues create-comment --body "My Comment" --owner hipstersmoothie --repo octokit-cli --issue_number 26

Fuzzy find an emoji:

Using fzf

octokit emojis get | fzf

Commands in CI

When run from a continuos integration (CI) environment, octokit-cli will detect the owner, repo, and issue_number and set these as defaults when running a command.

For example, if you ran the following command from a PR in your CI it would automatically include owner, repo, and issue_number. If ran locally these arguments would be required.

octokit issues create-comment --body "My Comment"

Contributing

If you want a feature or can fix a bug, submit a PR!

If you think a particular endpoint can be formatted better for the CLI, add a formatter in src/formatters.

Developing

First install the dependencies:

yarn

Scripts

  • yarn start - Build the CLI and watch for changes
  • yarn build - Create a build of the CLI
0.2.0

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago