mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Fix the matcher condition where multiple matchers are found (#129670)
Something reformatted the labeler file and removed the any formatter conditions on the label matchers. *List which issues are fixed by this PR. You must list at least one issue.* *If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].* ## Pre-launch Checklist - [ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [ ] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [ ] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [ ] I signed the [CLA]. - [ ] I listed at least one issue that this PR fixes in the description above. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] I added new tests to check the change I am making, or this PR is [test-exempt]. - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/wiki/Tree-hygiene#overview [Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene [test-exempt]: https://github.com/flutter/flutter/wiki/Tree-hygiene#tests [Flutter Style Guide]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo [Features we expect every widget to implement]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#features-we-expect-every-widget-to-implement [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/wiki/Chat
This commit is contained in:
parent
5a5b58a993
commit
ea449c33dd
20
.github/labeler.yml
vendored
20
.github/labeler.yml
vendored
@ -4,25 +4,29 @@
|
|||||||
|
|
||||||
# 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':
|
||||||
|
- any:
|
||||||
- '**/accessibility/*'
|
- '**/accessibility/*'
|
||||||
- '**/*accessibility*'
|
- '**/*accessibility*'
|
||||||
- '**/semantics/*'
|
- '**/semantics/*'
|
||||||
- '**/*semantics*'
|
- '**/*semantics*'
|
||||||
|
|
||||||
'a: animation':
|
'a: animation':
|
||||||
|
- any:
|
||||||
- '**/animation/*'
|
- '**/animation/*'
|
||||||
- '**/*animation*'
|
- '**/*animation*''
|
||||||
|
|
||||||
'a: internationalization':
|
'a: internationalization':
|
||||||
- packages/flutter_localizations/**/*
|
- packages/flutter_localizations/**/*
|
||||||
|
|
||||||
'a: tests':
|
'a: tests':
|
||||||
|
- any:
|
||||||
- packages/flutter_driver/**/*
|
- packages/flutter_driver/**/*
|
||||||
- packages/flutter_goldens/**/*
|
- packages/flutter_goldens/**/*
|
||||||
- packages/flutter_goldens_client/**/*
|
- packages/flutter_goldens_client/**/*
|
||||||
- packages/flutter_test/**/*
|
- packages/flutter_test/**/*
|
||||||
|
|
||||||
'a: text input':
|
'a: text input':
|
||||||
|
- any:
|
||||||
- '**/text/*'
|
- '**/text/*'
|
||||||
- '**/*text*'
|
- '**/*text*'
|
||||||
|
|
||||||
@ -39,28 +43,34 @@ engine:
|
|||||||
- bin/internal/engine.version
|
- bin/internal/engine.version
|
||||||
|
|
||||||
'f: cupertino':
|
'f: cupertino':
|
||||||
|
- any:
|
||||||
- '**/cupertino/*'
|
- '**/cupertino/*'
|
||||||
- '**/*cupertino*'
|
- '**/*cupertino*'
|
||||||
|
|
||||||
'f: focus':
|
'f: focus':
|
||||||
|
- any:
|
||||||
- '**/focus/*'
|
- '**/focus/*'
|
||||||
- '**/*focus*'
|
- '**/*focus*'
|
||||||
|
|
||||||
'f: gestures':
|
'f: gestures':
|
||||||
|
- any:
|
||||||
- '**/gestures/*'
|
- '**/gestures/*'
|
||||||
- '**/*gestures*'
|
- '**/*gestures*'
|
||||||
|
|
||||||
'f: material design':
|
'f: material design':
|
||||||
|
- any:
|
||||||
- '**/material/*'
|
- '**/material/*'
|
||||||
- '**/*material*'
|
- '**/*material*'
|
||||||
|
|
||||||
'f: routes':
|
'f: routes':
|
||||||
|
- any:
|
||||||
- '**/navigator/*'
|
- '**/navigator/*'
|
||||||
- '**/*navigator*'
|
- '**/*navigator*'
|
||||||
- '**/route/*'
|
- '**/route/*'
|
||||||
- '**/*route*'
|
- '**/*route*'
|
||||||
|
|
||||||
'f: scrolling':
|
'f: scrolling':
|
||||||
|
- any:
|
||||||
- '**/*scroll*'
|
- '**/*scroll*'
|
||||||
- '**/scroll/*'
|
- '**/scroll/*'
|
||||||
- '**/*sliver*'
|
- '**/*sliver*'
|
||||||
@ -69,9 +79,10 @@ engine:
|
|||||||
- '**/viewport/*'
|
- '**/viewport/*'
|
||||||
|
|
||||||
framework:
|
framework:
|
||||||
|
- any:
|
||||||
- packages/flutter/**/*
|
- packages/flutter/**/*
|
||||||
- packages/flutter_driver/**/*
|
- packages/flutter_driver/**/*
|
||||||
- packages/flutter_goldens/**/*
|
- packages/flutter_goldens/**/*/
|
||||||
- packages/flutter_goldens_client/**/*
|
- packages/flutter_goldens_client/**/*
|
||||||
- packages/flutter_test/**/*
|
- packages/flutter_test/**/*
|
||||||
- packages/integration_test/**/*
|
- packages/integration_test/**/*
|
||||||
@ -83,6 +94,7 @@ platform-ios:
|
|||||||
- packages/flutter_tools/lib/src/ios/**/*
|
- packages/flutter_tools/lib/src/ios/**/*
|
||||||
|
|
||||||
team:
|
team:
|
||||||
|
- any:
|
||||||
- '**/pubspec.yaml'
|
- '**/pubspec.yaml'
|
||||||
- '**/fix_data.yaml'
|
- '**/fix_data.yaml'
|
||||||
- '**/*.expect'
|
- '**/*.expect'
|
||||||
@ -93,14 +105,16 @@ team:
|
|||||||
- packages/flutter_goldens/**/*
|
- packages/flutter_goldens/**/*
|
||||||
- packages/flutter_goldens_client/**/*
|
- packages/flutter_goldens_client/**/*
|
||||||
|
|
||||||
'gallery':
|
'team: gallery':
|
||||||
- examples/flutter_gallery/**/*
|
- examples/flutter_gallery/**/*
|
||||||
|
|
||||||
tech-debt:
|
tech-debt:
|
||||||
|
- any:
|
||||||
- '**/fix_data.yaml'
|
- '**/fix_data.yaml'
|
||||||
- '**/*.expect'
|
- '**/*.expect'
|
||||||
- '**/*test_fixes*'
|
- '**/*test_fixes*'
|
||||||
|
|
||||||
tool:
|
tool:
|
||||||
|
- any:
|
||||||
- packages/flutter_tools/**/*
|
- packages/flutter_tools/**/*
|
||||||
- packages/fuchsia_remote_debug_protocol/**/*
|
- packages/fuchsia_remote_debug_protocol/**/*
|
||||||
|
Loading…
Reference in New Issue
Block a user