-
Notifications
You must be signed in to change notification settings - Fork 4
/
CODEOWNERS
Validating CODEOWNERS rules...
86 lines (77 loc) · 3.57 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
77
78
79
80
81
82
83
84
85
86
# 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/st/ @rexut
/soc/st/stm32/ @rexut
/soc/st/stm32/stm32f7x/ @rexut
/boards/cytron/ @rexut
/boards/cytron/maker_rp2040/ @rexut
/boards/extensions/ @rexut
/boards/extensions/mimxrt1010_evk/ @rexut
/boards/extensions/mimxrt1060_evk/ @rexut
/boards/extensions/nucleo_f303re/ @rexut
/boards/extensions/nucleo_f401re/ @rexut
/boards/extensions/nucleo_l496zg/ @rexut
/boards/extensions/rpi_pico/ @rexut
/boards/jsed/ @rexut
/boards/jsed/picoboy/ @rexut
/boards/seeed/ @rexut
/boards/seeed/seeeduino_cm0/ @rexut
/boards/seeed/seeeduino_lotus/ @rexut
/boards/seeed/xiao_samd21/ @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/tiac/ @rexut
/boards/tiac/magpie_f777ni/ @rexut
/boards/waveshare/ @rexut
/boards/waveshare/rp2040/ @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