Unverified Commit 2be476d4 authored by Casey Hillers's avatar Casey Hillers Committed by GitHub

[labeler] Fix adding labels when name is directory (#128243)

https://github.com/flutter/flutter/issues/126002
parent a3ddead1
...@@ -4,10 +4,13 @@ ...@@ -4,10 +4,13 @@
# See https://github.com/actions/labeler/blob/main/README.md for docs. # See https://github.com/actions/labeler/blob/main/README.md for docs.
'a: accessibility': 'a: accessibility':
- '**/accessibility/*'
- '**/*accessibility*' - '**/*accessibility*'
- '**/semantics/*'
- '**/*semantics*' - '**/*semantics*'
'a: animation': 'a: animation':
- '**/animation/*'
- '**/*animation*' - '**/*animation*'
'a: internationalization': 'a: internationalization':
...@@ -20,6 +23,7 @@ ...@@ -20,6 +23,7 @@
- packages/flutter_test/**/* - packages/flutter_test/**/*
'a: text input': 'a: text input':
- '**/text/*'
- '**/*text*' - '**/*text*'
'd: api docs': 'd: api docs':
...@@ -35,25 +39,34 @@ engine: ...@@ -35,25 +39,34 @@ engine:
- bin/internal/engine.version - bin/internal/engine.version
'f: cupertino': 'f: cupertino':
- '**/cupertino/*'
- '**/*cupertino*' - '**/*cupertino*'
'f: focus': 'f: focus':
- '**/focus/*'
- '**/*focus*' - '**/*focus*'
'f: gestures': 'f: gestures':
- '**/gestures/*'
- '**/*gestures*' - '**/*gestures*'
'f: material design': 'f: material design':
- '**/material/*'
- '**/*material*' - '**/*material*'
'f: routes': 'f: routes':
- '**/navigator/*'
- '**/*navigator*' - '**/*navigator*'
- '**/route/*'
- '**/*route*' - '**/*route*'
'f: scrolling': 'f: scrolling':
- '**/*scroll*' - '**/*scroll*'
- '**/scroll/*'
- '**/*sliver*' - '**/*sliver*'
- '**/sliver/*'
- '**/*viewport*' - '**/*viewport*'
- '**/viewport/*'
framework: framework:
- packages/flutter/**/* - packages/flutter/**/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment