8000 minor #34127 fix paths to detect code owners (xabbuh) · symfony/symfony@8920672 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8920672

Browse files
committed
minor #34127 fix paths to detect code owners (xabbuh)
This PR was merged into the 3.4 branch. Discussion ---------- fix paths to detect code owners | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | I was wondering why sometimes I didn't receive any notifications for PRs where I thought a file for which I claimed code ownership was modified. Turns out according to https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners#codeowners-syntax the `dir/*` pattern does not include nested directories. Commits ------- cb7523d fix paths to detect code owners
2 parents fb70e0a + cb7523d commit 8920672

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/CODEOWNERS

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @dunglas
55
# Form
66
/src/Symfony/Bridge/Twig/Extension/FormExtension.php @xabbuh
7-
/src/Symfony/Bridge/Twig/Form/* @xabbuh
7+
/src/Symfony/Bridge/Twig/Form/ @xabbuh
88
/src/Symfony/Bridge/Twig/Node/FormThemeNode.php @xabbuh
99
/src/Symfony/Bridge/Twig/Node/RenderBlockNode.php @xabbuh
1010
/src/Symfony/Bridge/Twig/Node/SearchAndRenderBlockNode.php @xabbuh
@@ -13,34 +13,34 @@
1313
/src/Symfony/Bridge/Twig/Tests/TokenParser/FormThemeTokenParserTest.php @xabbuh
1414
/src/Symfony/Bridge/Twig/TokenParser/FormThemeTokenParser.php @xabbuh
1515
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/FormPass.php @xabbuh
16-
/src/Symfony/Bundle/FrameworkBundle/Resources/views/* @xabbuh
16+
/src/Symfony/Bundle/FrameworkBundle/Resources/views/ @xabbuh
1717
/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php @xabbuh
1818
/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Compiler/FormPassTest.php @xabbuh
1919
/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperTableLayoutTest.php @xabbuh
2020
/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php @xabbuh
21-
/src/Symfony/Component/Form/* @xabbuh
21+
/src/Symfony/Component/Form/ @xabbuh
2222
# HttpKernel
2323
/src/Symfony/Component/HttpKernel/Log/Logger.php @dunglas
2424
# LDAP
25-
/src/Symfony/Component/Ldap/* @csarrazi
25+
/src/Symfony/Component/Ldap/ @csarrazi
2626
# Lock
27-
/src/Symfony/Component/Lock/* @jderusse
27+
/src/Symfony/Component/Lock/ @jderusse
2828
# Messenger
29-
/src/Symfony/Bridge/Doctrine/Messenger/* @sroze
30-
/src/Symfony/Component/Messenger/* @sroze
29+
/src/Symfony/Bridge/Doctrine/Messenger/ @sroze
30+
/src/Symfony/Component/Messenger/ @sroze
3131
# PropertyInfo
32-
/src/Symfony/Component/PropertyInfo/* @dunglas
33-
/src/Symfony/Bridge/Doctrine/PropertyInfo/* @dunglas
32+
/src/Symfony/Component/PropertyInfo/ @dunglas
33+
/src/Symfony/Bridge/Doctrine/PropertyInfo/ @dunglas
3434
# Serializer
35-
/src/Symfony/Component/Serializer/* @dunglas
35+
/src/Symfony/Component/Serializer/ @dunglas
3636
# WebLink
37-
/src/Symfony/Component/WebLink/* @dunglas
37+
/src/Symfony/Component/WebLink/ @dunglas
3838
# Workflow
3939
/src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php @lyrixx
4040
/src/Symfony/Bridge/Twig/Tests/Extension/WorkflowExtensionTest.php @lyrixx
4141
/src/Symfony/Bundle/FrameworkBundle/Command/WorkflowDumpCommand.php @lyrixx
4242
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/ValidateWorkflowsPass.php @lyrixx
4343
/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Compiler/WorkflowGuardListenerPass.php @lyrixx
44-
/src/Symfony/Component/Workflow/* @lyrixx
44+
/src/Symfony/Component/Workflow/ @lyrixx
4545
# Yaml
46-
/src/Symfony/Component/Yaml/* @xabbuh
46+
/src/Symfony/Component/Yaml/ @xabbuh

0 commit comments

Comments
 (0)
0