├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── codeowners │ └── main.go ├── codeowners.go ├── example_test.go ├── go.mod ├── go.sum ├── match.go ├── match_test.go ├── parse.go ├── parse_test.go └── testdata └── patterns.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /codeowners 2 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/README.md -------------------------------------------------------------------------------- /cmd/codeowners/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/cmd/codeowners/main.go -------------------------------------------------------------------------------- /codeowners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/codeowners.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/go.sum -------------------------------------------------------------------------------- /match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/match.go -------------------------------------------------------------------------------- /match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/match_test.go -------------------------------------------------------------------------------- /parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/parse.go -------------------------------------------------------------------------------- /parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/parse_test.go -------------------------------------------------------------------------------- /testdata/patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/codeowners/HEAD/testdata/patterns.json --------------------------------------------------------------------------------