codeowners icon indicating copy to clipboard operation
codeowners copied to clipboard

:honeybee: A Python library for codeowners files

Results 7 codeowners issues
Sort by recently updated
recently updated
newest added

hello! thanks for making this super useful library :) In [`path_to_regex()`](https://github.com/sbdchd/codeowners/blob/master/codeowners/__init__.py#L67), is it intended that the expanded ** regex match not only subfolders, but also partial filenames? For example, `a/**/b/`...

if i create a codeowners file like this: CODEOWNERS: /build/logs/log.txt @ghost owners = CodeOwners(example_file) owners.of("/build/logs/log.txt") it doesnt return any owner was this supposed to happen?

bug

In Gitlab, [CODEOWNERS files can have sections](https://docs.gitlab.com/ee/user/project/codeowners/#set-default-owner-for-a-section), where a single team is responsible for a bunch of files. For example: ``` [Documentation] @docs-team docs/ README.md [Database] @database-team model/db/ config/db/database-setup.md @docs-team...

as pointed by [KrystianOcado](https://github.com/KrystianOcado) in https://github.com/sbdchd/codeowners/issues/40

The Github codeowners docs say: ``` # The `docs/*` pattern will match files like # `docs/getting-started.md` but not further nested files like # `docs/build-app/troubleshooting.md`. docs/* [email protected] ``` However: ```py >>>...

This may be a user error on our part or a disagreement about the interpretation of the CODEOWNER spec. If I have a CODEOWNERS file with the first line of...

It looks like the package only supports 3.7+, so I am not able to install it on my 3.6 Python project. Is it possible to change the requirement to 3.6...