debian-mirror-gitlab/doc/user/project/code_owners.md

121 lines
4.1 KiB
Markdown
Raw Normal View History

2019-12-21 20:55:43 +05:30
---
type: reference
---
2019-09-30 21:07:59 +05:30
# Code Owners **(STARTER)**
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/6916)
2019-07-31 22:56:46 +05:30
in [GitLab Starter](https://about.gitlab.com/pricing/) 11.3.
2019-12-04 20:38:33 +05:30
> - [Support for group namespaces](https://gitlab.com/gitlab-org/gitlab-foss/issues/53182) added in GitLab Starter 12.1.
2019-12-21 20:55:43 +05:30
> - Code Owners for Merge Request approvals was [introduced](https://gitlab.com/gitlab-org/gitlab/issues/4418) in [GitLab Premium](https://about.gitlab.com/pricing/) 11.9.
2019-07-31 22:56:46 +05:30
2019-09-30 21:07:59 +05:30
You can use a `CODEOWNERS` file to specify users or
[shared groups](members/share_project_with_groups.md)
that are responsible for certain files in a repository.
2019-07-31 22:56:46 +05:30
You can choose and add the `CODEOWNERS` file in three places:
2019-12-21 20:55:43 +05:30
- To the root directory of the repository
- Inside the `.gitlab/` directory
- Inside the `docs/` directory
2019-07-31 22:56:46 +05:30
The `CODEOWNERS` file is scoped to a branch, which means that with the
introduction of new files, the person adding the new content can
specify themselves as a code owner, all before the new changes
get merged to the default branch.
When a file matches multiple entries in the `CODEOWNERS` file,
2020-04-08 14:13:33 +05:30
the users from last pattern matching the file are displayed on the
blob page of the given file. For example, you have the following
`CODEOWNERS` file:
2020-04-22 19:07:51 +05:30
```plaintext
2020-04-08 14:13:33 +05:30
README.md @user1
# This line would also match the file README.md
*.md @user2
```
The user that would show for `README.md` would be `@user2`.
2019-07-31 22:56:46 +05:30
2019-12-21 20:55:43 +05:30
## Approvals by Code Owners
Once you've set Code Owners to a project, you can configure it to
receive approvals:
2020-03-13 15:44:24 +05:30
- As [merge request eligible approvers](merge_requests/merge_request_approvals.md#code-owners-as-eligible-approvers).
2019-12-21 20:55:43 +05:30
- As required approvers for [protected branches](protected_branches.md#protected-branches-approval-by-code-owners-premium). **(PREMIUM)**
Once set, Code Owners are displayed in merge requests widgets:
![MR widget - Code Owners](img/code_owners_mr_widget_v12_4.png)
2019-07-31 22:56:46 +05:30
## The syntax of Code Owners files
Files can be specified using the same kind of patterns you would use
in the `.gitignore` file followed by the `@username` or email of one
2019-09-30 21:07:59 +05:30
or more users or by the `@name` of one or more groups that should
2020-03-13 15:44:24 +05:30
be owners of the file. Groups must be added as [members of the project](members/index.md),
or they will be ignored.
2019-07-31 22:56:46 +05:30
The order in which the paths are defined is significant: the last
pattern that matches a given path will be used to find the code
owners.
Starting a line with a `#` indicates a comment. This needs to be
escaped using `\#` to address files for which the name starts with a
`#`.
Example `CODEOWNERS` file:
2020-04-22 19:07:51 +05:30
```plaintext
2019-07-31 22:56:46 +05:30
# This is an example code owners file, lines starting with a `#` will
# be ignored.
# app/ @commented-rule
2019-09-04 21:01:54 +05:30
# We can specify a default match using wildcards:
2019-07-31 22:56:46 +05:30
* @default-codeowner
# Rules defined later in the file take precedence over the rules
# defined before.
# This will match all files for which the file name ends in `.rb`
*.rb @ruby-owner
# Files with a `#` can still be accesssed by escaping the pound sign
\#file_with_pound.rb @owner-file-with-pound
2019-09-30 21:07:59 +05:30
# Multiple codeowners can be specified, separated by spaces or tabs
2019-12-04 20:38:33 +05:30
CODEOWNERS @multiple @code @owners
2019-07-31 22:56:46 +05:30
# Both usernames or email addresses can be used to match
# users. Everything else will be ignored. For example this will
# specify `@legal` and a user with email `janedoe@gitlab.com` as the
# owner for the LICENSE file
LICENSE @legal this_does_not_match janedoe@gitlab.com
2019-09-30 21:07:59 +05:30
# Group names can be used to match groups and nested groups to specify
# them as owners for a file
README @group @group/with-nested/subgroup
2019-07-31 22:56:46 +05:30
# Ending a path in a `/` will specify the code owners for every file
# nested in that directory, on any level
/docs/ @all-docs
# 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
# This will only match a `config` directory in the root of the
# repository
/config/ @config-owner
# If the path contains spaces, these need to be escaped like this:
path\ with\ spaces/ @space-owner
```