This is a custom workflow for the Alfred app that lets you search and open a Github repository via the Github Search API.
You'll need to authenticate with a personal access token that you can generate in the Github developer settings page or by running the gh-token
command in Alfred.
After you have copied your personal access token, run gh-login <your-token>
to set your personal access token.
Here's the list of available commands.
The example above will search for repositories with the string "hello-world" in their name. Internally this uses the Github Search syntax, so you can use modifiers like:
gh hello-world stars:>100
This will search only in repositories that have more than 100 stars.
Please note that this command only searches in the repository name. This means that your query will be appended with the
in:name
modifier. So when you type inhello-world
, the final search query sent will be: "hello-world in:name".
This command works the same as the previous one (gh <query>
) but it limits the search to your own repositories.
This includes repositories from your organizations as well.
This command searches within the Pull Requests that you're involved in.
This command just opens your Github notification page.
If you're using an Enterprise account, you can call the gh-host <host>
command.
You can submit your bug reports or feature requests at: https://github.com/edgarjs/alfred-github-repos/issues
If you want to submit a Pull Request, please follow these simple guides:
- Add a detailed description of what you're changing and why.
- Add necessary unit tests that cover your changes.
- Don't increase the version of the workflow in your changes.
Here are some ideas for Pull Requests:
- Make search faster
- Search commits in a repository
- Search projects in an organization
- Improve icon graphics
This project is published under the MIT License.