https://github.com/nicksantamaria/github-topics
CLI tool to help manage topics on github repos.
https://github.com/nicksantamaria/github-topics
Last synced: 4 months ago
JSON representation
CLI tool to help manage topics on github repos.
- Host: GitHub
- URL: https://github.com/nicksantamaria/github-topics
- Owner: nicksantamaria
- Created: 2021-09-14T04:05:58.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-11-28T03:38:33.000Z (over 1 year ago)
- Last Synced: 2025-01-15T10:22:19.015Z (6 months ago)
- Language: Go
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Github Topics CLI
A simple cli tool to manage topis on github repositories.
## Usage
### List repos with a topic
```
export GITHUB_TOKEN=xxx# List on any of provided topics.
github-topics list --owner=my-org topic-to-filter,topic-2
```### Add topic to a repo
```
export GITHUB_TOKEN=xxx
github-topics add --owner=my-org repo-name new-topic
```### Remove topic from a repo
```
export GITHUB_TOKEN=xxx
github-topics remove --owner=my-org repo-name old-topic
```