From adf123f910412e18970c2f02cfef9bca9b2bc08e Mon Sep 17 00:00:00 2001 From: Bartosz Kokoszko Date: Tue, 1 Jun 2021 11:45:00 +0200 Subject: [PATCH] CODEOWNERS: add CODEOWNERS file This commit adds CODEOWNERS file. Signed-off-by: Bartosz Kokoszko --- CODEOWNERS | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..a5d5623 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,24 @@ +# Lines starting with '#' are comments. +# Each line is a file pattern followed by one or more owners. + +# These owners will be the default owners for everything in the repo. +** @mwasko @lgirdwood + +# Order is important. The last matching pattern has the most precedence. +# So if a pull request only touches javascript files, only these owners +# will be requested to review. + +# loadable library scripts +scripts/* @bkokoszx + +# external tools +tools-external/** @bkokoszx + +# building infrastracture +FW/** @bkokoszx + +# module examples +modules/** @bkokoszx + +# docs +docs/** @bkokoszx