Skip to content

Add default owner for CODEOWNERS section

Fabio Pitino requested to merge codeowners-default-section-owners into master

What does this MR do and why?

Related to Define default owners for CODEOWNERS sections (#371711 - closed)

In this MR I introduce default owners in CODEOWNERS sections. This feature is aiming to reduce duplication of owners across may entries of the same section.

Instead of doing:

[Documentation]
ee/docs/    @docs
docs/       @docs

[Database]
README.md  @database
model/db/   @database

We can do:

[Documentation] @docs
ee/docs/
docs/

[Database] @database
README.md
model/db/
lib/database/ @platform   # override with @platoform instead of @database

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Edited by Fabio Pitino

Merge request reports