Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
22d95164
Commit
22d95164
authored
7 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Use ** for OWNERS files for trees
parent
80a87ea8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/CODEOWNERS
+17
-17
17 additions, 17 deletions
.github/CODEOWNERS
tools/mkowners/mkowners.py
+2
-2
2 additions, 2 deletions
tools/mkowners/mkowners.py
with
19 additions
and
19 deletions
.github/CODEOWNERS
+
17
−
17
View file @
22d95164
# Auto-generated by the tools/mkowners/mkowners.py tool
# Uses OWNERS files in different modules throughout the
# repository as the source of truth for module ownership.
*
@a11r
@nicolasnoble
@ctiller
bazel/*
@nicolasnoble
@dgquintas
@ctiller
cmake/*
@jtattermusch
@a11r
@nicolasnoble
@ctiller
*
*
@a11r
@nicolasnoble
@ctiller
bazel/*
*
@nicolasnoble
@dgquintas
@ctiller
cmake/*
*
@jtattermusch
@a11r
@nicolasnoble
@ctiller
doc/PROTOCOL-HTTP2.md
@ejona86
@a11r
@nicolasnoble
@ctiller
doc/interop-test-descriptions.md
@ejona86
@a11r
@nicolasnoble
@ctiller
etc/*
@jboeuf
@nicolasnoble
@a11r
@ctiller
include/*
@ctiller
@markdroth
@dgquintas
@a11r
@nicolasnoble
src/core/*
@ctiller
@markdroth
@dgquintas
@a11r
@nicolasnoble
src/cpp/*
@ctiller
@markdroth
@dgquintas
@a11r
@nicolasnoble
src/csharp/*
@jtattermusch
@apolcyn
@a11r
@nicolasnoble
@ctiller
src/node/*
@murgatroid99
@a11r
@nicolasnoble
@ctiller
src/objective-c/*
@muxi
@makdharma
@a11r
@nicolasnoble
@ctiller
src/php/*
@stanley-cheung
@murgatroid99
@a11r
@nicolasnoble
@ctiller
src/python/*
@nathanielmanistaatgoogle
@kpayson64
@a11r
@nicolasnoble
@ctiller
src/ruby/*
@apolcyn
@murgatroid99
@a11r
@nicolasnoble
@ctiller
tools/*
@matt-kwong
@jtattermusch
@nicolasnoble
@a11r
@ctiller
tools/codegen/core/*
@ctiller
@dgquintas
@markdroth
tools/dockerfile/*
@matt-kwong
@jtattermusch
@nicolasnoble
@a11r
@ctiller
tools/run_tests/*
@matt-kwong
@jtattermusch
@nicolasnoble
@a11r
@ctiller
etc/*
*
@jboeuf
@nicolasnoble
@a11r
@ctiller
include/*
*
@ctiller
@markdroth
@dgquintas
@a11r
@nicolasnoble
src/core/*
*
@ctiller
@markdroth
@dgquintas
@a11r
@nicolasnoble
src/cpp/*
*
@ctiller
@markdroth
@dgquintas
@a11r
@nicolasnoble
src/csharp/*
*
@jtattermusch
@apolcyn
@a11r
@nicolasnoble
@ctiller
src/node/*
*
@murgatroid99
@a11r
@nicolasnoble
@ctiller
src/objective-c/*
*
@muxi
@makdharma
@a11r
@nicolasnoble
@ctiller
src/php/*
*
@stanley-cheung
@murgatroid99
@a11r
@nicolasnoble
@ctiller
src/python/*
*
@nathanielmanistaatgoogle
@kpayson64
@a11r
@nicolasnoble
@ctiller
src/ruby/*
*
@apolcyn
@murgatroid99
@a11r
@nicolasnoble
@ctiller
tools/*
*
@matt-kwong
@jtattermusch
@nicolasnoble
@a11r
@ctiller
tools/codegen/core/*
*
@ctiller
@dgquintas
@markdroth
tools/dockerfile/*
*
@matt-kwong
@jtattermusch
@nicolasnoble
@a11r
@ctiller
tools/run_tests/*
*
@matt-kwong
@jtattermusch
@nicolasnoble
@a11r
@ctiller
This diff is collapsed.
Click to expand it.
tools/mkowners/mkowners.py
+
2
−
2
View file @
22d95164
...
...
@@ -141,7 +141,7 @@ def add_parent_to_globs(parent, globs):
for
owners
in
owners_data
:
if
owners
.
dir
==
parent
:
for
directive
in
owners
.
directives
:
for
dglob
in
directive
.
globs
or
[
'
*
'
]:
for
dglob
in
directive
.
globs
or
[
'
*
*
'
]:
for
gglob
,
glob
in
globs
.
items
():
if
glob_intersect
(
dglob
,
gglob
):
if
directive
.
who
not
in
glob
:
...
...
@@ -163,7 +163,7 @@ with open(args.out, 'w') as out:
continue
globs
=
collections
.
OrderedDict
()
for
directive
in
head
.
directives
:
for
glob
in
directive
.
globs
or
[
'
*
'
]:
for
glob
in
directive
.
globs
or
[
'
*
*
'
]:
if
glob
not
in
globs
:
globs
[
glob
]
=
[]
globs
[
glob
].
append
(
directive
.
who
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment