Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/winebarrel/codeowners
List up CODEOWNERS of all repositories.
https://github.com/winebarrel/codeowners
codeowners github
Last synced: 3 months ago
JSON representation
List up CODEOWNERS of all repositories.
- Host: GitHub
- URL: https://github.com/winebarrel/codeowners
- Owner: winebarrel
- License: mit
- Created: 2024-09-03T02:54:30.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-16T05:31:28.000Z (4 months ago)
- Last Synced: 2024-10-08T10:20:52.081Z (3 months ago)
- Topics: codeowners, github
- Language: Go
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: codeowners.go
Awesome Lists containing this project
README
# codeowners
[![CI](https://github.com/winebarrel/codeowners/actions/workflows/ci.yml/badge.svg)](https://github.com/winebarrel/codeowners/actions/workflows/ci.yml)
List up CODEOWNERS of all repositories.
## Usage
```
Usage: codeowners --user=STRING --org=STRING --token=STRING [flags]Flags:
-h, --help Show help.
-u, --user=STRING User name.
-o, --org=STRING Organization name.
--token=STRING Authentication token for github.com API requests ($GITHUB_TOKEN).
-y, --[no-]yaml Output as YAML.
--version
``````sh
$ codeowners -o my-org
[
{
"repo": "my-repo-1",
"exists": true,
"content": "* @bob\n"
},
{
"repo": "my-repo-2",
"exists": true,
"content": "* @alice\n"
},
{
"repo": "my-repo-3",
"exists": false
}
]
```