We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-o
When using -o to filter results owned by a specific owner, it displays the filename then the owner, e.g.:
example_test.go @example/go-engineers example.go @example/go-engineers
When using this in scripts, we'd then have to extract the file only, e.g.:
codeowners -o @example/go-engineers | cut -d ' ' -f 1 | xargs ...
Provide an additional flag or option, for example --filenames-only, so we can then simply go:
--filenames-only
codeowners -o @example/go-engineers --filenames-only | xargs ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context
When using
-o
to filter results owned by a specific owner, it displays the filename then the owner, e.g.:When using this in scripts, we'd then have to extract the file only, e.g.:
Request
Provide an additional flag or option, for example
--filenames-only
, so we can then simply go:The text was updated successfully, but these errors were encountered: