forked from tiacsys/bridle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CODEOWNERS
Validating CODEOWNERS rules...
76 lines (67 loc) · 3.09 KB
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# CODEOWNERS for autoreview assigning in github
# https://help.github.com/en/articles/about-code-owners#codeowners-syntax
# Order is important; for each modified file, the last matching
# pattern takes the most precedence.
# That is, with the last pattern being
# *.rst @rexut
# if only .rst files are being modified, only rexut is
# automatically requested for review, but you can manually
# add others as needed.
# Do not use wildcard on all source yet
# * @rexut
# Root folder
/VERSION @rexut
/version.h.in @rexut
/CODEOWNERS @rexut
/LICENSE @rexut
/README.md @rexut
/west.yml @rexut
# All cmake related files
/CMakeLists.txt @rexut
/cmake/ @rexut
/share/*-package/ @rexut
# GH workfolws
/.github/ @rexut
/.github/workflows/ @rexut
/arch/ @rexut
/soc/arm/ @rexut
/soc/arm/stm32f767xx/ @rexut
/boards/arc/ @rexut
/boards/arm/ @rexut
/boards/arm/tiac_magpie/ @rexut
/boards/nios2/ @rexut
/boards/arm/tiac_magpie/ @rexut
/boards/posix/ @rexut
/boards/riscv/ @rexut
/boards/shields/ @rexut
/boards/shields/can_timing_adj/ @rexut
/boards/shields/grove/ @rexut
/boards/shields/grove_btn/ @rexut
/boards/shields/grove_led/ @rexut
/boards/shields/loopback_test/ @rexut
/boards/shields/x_grove_testbed/ @rexut
/boards/sparc/ @rexut
/boards/x86/ @rexut
/boards/xtensa/ @rexut
/doc/ @rexut
/drivers/ @rexut
/dts/arm/st/ @rexut
/dts/bindings/ @rexut
/dts/binding-template.txt @rexut
/include/ @rexut
/lib/ @rexut
/lib/bridle/ @rexut
/modules/ @rexut
/samples/ @rexut
/samples/helloshell/ @rexut
/tests/ @rexut
/scripts/ @rexut
/services/ @rexut
/subsys/ @rexut
/subsys/shell/ @rexut
/subsys/shell/modules/ @rexut
/zephyr/ @rexut
# Get all docs reviewed
*.rst @rexut
# Devcontainer setup for vscode
/.devcontainer/ @rexut