Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicksantamaria/github-topics
CLI tool to help manage topics on github repos.
https://github.com/nicksantamaria/github-topics
Last synced: 2 days 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-28T03:38:33.000Z (12 months ago)
- Last Synced: 2024-06-21T02:17:08.782Z (5 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
```