-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCODEOWNERS
23 lines (16 loc) · 898 Bytes
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This file can appear in /CODEOWNERS or in /.github/CODEOWNERS
# Global code owners
* @ridomin # Rido owns everything becuase this is his repo
# Thermostat owners
models/com-example-thermostat @montgomp
# Temperature controller
models/com-example-temperaturecontroller @mmydland
# Device information GitHub user name or email can be used
models/azure-devicemanagement-deviceinformation @mmydland [email protected]
# You can also use wildcards
models/**/model-manifest.com [email protected]
# you can also restrict to single files
models/azure-devicemanagement-deviceinformation/deviceinformation.json [email protected]
# Order matters, permissions are always additive
# Please turn on branch protection in sthe Settings/Branches to enforce owners are required to perform code reviews of PR
# More information can be found at https://github.blog/2017-07-06-introducing-code-owners/