mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Update CODEOWNERS to include handbook, etc (#7163)
* Update CODEOWNERS * Update CODEOWNERS * Update CODEOWNERS * Update CODEOWNERS * Update CODEOWNERS * add articles/ + add leading "/" for CHANGELOG.md so it doesn't inadvertently catch others * Update custom.js * lint fix * Update custom.js
This commit is contained in:
parent
640a1f3192
commit
e6781e4379
2 changed files with 69 additions and 18 deletions
58
CODEOWNERS
58
CODEOWNERS
|
|
@ -13,11 +13,61 @@ go.mod @fleetdm/go
|
|||
# GitHub settings + actions
|
||||
/.github/ @fleetdm/g-platform
|
||||
|
||||
# Codeowners file
|
||||
/CODEOWNERS @zwass @mikermcneil
|
||||
|
||||
# Changelog
|
||||
CHANGELOG.md @noahtalerman
|
||||
/CHANGELOG.md @noahtalerman
|
||||
|
||||
# Markdown docs
|
||||
*.md @Desmi-Dizney
|
||||
# Fleet documentation
|
||||
/docs/ @Desmi-Dizney @chris-mcgillicuddy
|
||||
|
||||
# API documentation
|
||||
# REST API reference documentation
|
||||
/docs/Using-Fleet/REST-API.md @ksatter
|
||||
/docs/Contributing/API-for-contributors.md @ksatter
|
||||
|
||||
# Standard query library YAML
|
||||
/docs/01-Using-Fleet/standard-query-library/standard-query-library.yml @guillaumeross
|
||||
|
||||
# Articles
|
||||
/articles @chris-mcgillicuddy
|
||||
|
||||
# Website
|
||||
/website/ @eashaw
|
||||
/website/views/ @eashaw
|
||||
/website/assets/ @eashaw
|
||||
|
||||
# Website redirects and URLs
|
||||
/website/config/routes.js @eashaw @mike-j-thomas
|
||||
|
||||
# Website backend, scripts, deps
|
||||
/website/api/ @mikermcneil
|
||||
/website/config/ @mikermcneil
|
||||
/website/scripts/ @mikermcneil
|
||||
/website/package.json @mikermcneil
|
||||
|
||||
# GitHub brandfront
|
||||
/README.md @chris-mcgillicuddy
|
||||
|
||||
# NPM brandfront (npmjs.com/package/fleetctl)
|
||||
/tools/fleetctl-npm/README.md @chris-mcgillicuddy
|
||||
|
||||
# Handbook
|
||||
/handbook/company @mikermcneil
|
||||
/handbook/people @charlottechance @hollidayn
|
||||
/handbook/security @guillaumeross
|
||||
/handbook/engineering @zwass
|
||||
/handbook/product @noahtalerman
|
||||
/handbook/sales @alexmitchelliii
|
||||
/handbook/customers @tgauda
|
||||
/handbook/growth @timmy-k
|
||||
/handbook/community @timmy-k
|
||||
/handbook/digital-experience @mike-j-thomas @chris-mcgillicuddy
|
||||
/handbook/README.md @chris-mcgillicuddy
|
||||
/handbook/handbook @chris-mcgillicuddy
|
||||
|
||||
#
|
||||
# For configuration that determines auto-approval + auto-unfreezing, so that contributors
|
||||
# can merge their own PRs without additional approval, please see the latest version of:
|
||||
# https://github.com/fleetdm/fleet/blob/74f65447b718663bd04df31ea1da28915d98792c/website/config/custom.js#L88-L128
|
||||
#
|
||||
|
|
|
|||
29
website/config/custom.js
vendored
29
website/config/custom.js
vendored
|
|
@ -95,36 +95,37 @@ module.exports.custom = {
|
|||
* *
|
||||
***************************************************************************/
|
||||
githubRepoDRIByPath: {
|
||||
'README.md': 'chris-mcgillicuddy',// (github brandfront)
|
||||
'README.md': ['chris-mcgillicuddy'],// (github brandfront)
|
||||
'tools/fleetctl-npm/README.md': ['chris-mcgillicuddy', 'mike-j-thomas'],//« brandfront for fleetctl package on npm
|
||||
|
||||
'handbook': ['desmi-dizney', 'mike-j-thomas', 'mikermcneil'],// (default for handbook)
|
||||
'articles': ['chris-mcgillicuddy', 'mike-j-thomas', 'eashaw', 'zwass', 'mikermcneil'],
|
||||
|
||||
'handbook': ['chris-mcgillicuddy', 'mike-j-thomas', 'eashaw', 'mikermcneil', 'zwass'],// (default for handbook)
|
||||
'handbook/company': 'mikermcneil',
|
||||
'handbook/people': 'charlottechance',
|
||||
'handbook/engineering': 'zwass',
|
||||
'handbook/product': 'noahtalerman',
|
||||
'handbook/security': 'guillaumeross',
|
||||
'handbook/sales': 'alexmitchelliii',
|
||||
'handbook/digital-experience': 'mike-j-thomas',
|
||||
'handbook/growth': 'timmy-k',
|
||||
'handbook/customers': 'tgauda',
|
||||
'handbook/community': ['dominuskelvin', 'ksatter'],
|
||||
'handbook/README.md': '*',// (any fleetie can update this page and merge their change without waiting for their change to be approved)
|
||||
|
||||
'tools/fleetctl-npm/README.md': ['mike-j-thomas'],//« brandfront for fleetctl package on npm
|
||||
'handbook/community': ['timmy-k'],
|
||||
|
||||
'website': 'mikermcneil',// (default for website)
|
||||
'website/views': 'eashaw',
|
||||
'website/assets': 'eashaw',
|
||||
'website/config/routes.js': ['eashaw', 'mike-j-thomas'],// (for managing website URLs)
|
||||
|
||||
'docs': 'zwass',// (default for docs)
|
||||
'docs/images': ['noahtalerman', 'eashaw', 'mike-j-thomas'],
|
||||
'docs/Using-Fleet/REST-API.md': 'lukeheath',
|
||||
'docs/Contributing/API-for-contributors.md': 'lukeheath',
|
||||
'docs/Deploying/FAQ.md': ['ksatter', 'dominuskelvin'],
|
||||
'docs/Contributing/FAQ.md': ['ksatter', 'dominuskelvin'],
|
||||
'docs/Using-Fleet/FAQ.md': ['ksatter', 'dominuskelvin'],
|
||||
'docs': ['desmi-dizney', 'chris-mcgillicuddy', 'zwass', 'mikermcneil'],// (default for docs)
|
||||
'docs/images': ['chris-mcgillicuddy', 'noahtalerman', 'eashaw', 'mike-j-thomas'],
|
||||
'docs/Using-Fleet/REST-API.md': 'ksatter',
|
||||
'docs/Contributing/API-for-contributors.md': 'ksatter',
|
||||
'docs/Deploying/FAQ.md': ['ksatter', 'tgauda'],
|
||||
'docs/Contributing/FAQ.md': ['ksatter', 'tgauda'],
|
||||
'docs/Using-Fleet/FAQ.md': ['ksatter', 'tgauda'],
|
||||
|
||||
'docs/01-Using-Fleet/standard-query-library/standard-query-library.yml': 'guillaumeross',// (standard query library)
|
||||
'docs/01-Using-Fleet/standard-query-library/standard-query-library.yml': ['guillaumeross','zwass'],// (standard query library)
|
||||
},
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue