Sha256: 64ab39a44d1a70dd9ff0d3977a7b2c3382d9df7a3db8d21be115e5878ee879bb
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
# This is an example of a CODEOWNERS file # lines starting with a `#` will be ignored. # app/ @commented-rule # We can specify a default match using wildcards: *.yml @default-codeowner # We can also specify "multiple tab or space" separated codeowners: *.yml @multiple @code @owners # Files with a `#` can still be accessed by escaping the pound sign \#file_with_pound.rb @owner-file-with-pound # You can use both usernames or email addresses to match LICENSE janedoe@gitlab.com @username # Group names can be used to match groups and nested groups to specify # them as owners for a file README @group/with-nested/subgroup # Ending a path in a `/` will specify the Code Owners for every file # nested in that directory, on any level /configs/ @all-configs # Ending a path in `/*` will specify Code Owners for every file in # that directory, but not nested deeper. This will match # `docs/index.md` but not `docs/projects/index.md` /docs/* @root-docs # This will make a `lib` directory nested anywhere in the repository match lib/ @lib-owner **/sources/php/ @lib-owner # Nested Wildcards is also supported widgets/**/Sources/ @widgets-owner # If the path contains spaces, escape them like this: path\ with\ spaces/ @space-owner # Nested directories starting without slash should match from anywhere foo/bar/ @owners feature/ @owners # Empty owners empty/owners/ # Code Owners section: [Database] model/db/ @gl-database ^[Optional Group] *.go @golang
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-missing_codeowners-1.2.2 | spec/fixtures/CODEOWNERS |