Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
}
]
```