Unverified Commit ea449c33 authored by Ricardo Amador's avatar Ricardo Amador Committed by GitHub

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
parent 5a5b58a9
......@@ -4,27 +4,31 @@
# See https://github.com/actions/labeler/blob/main/README.md for docs.
'a: accessibility':
- '**/accessibility/*'
- '**/*accessibility*'
- '**/semantics/*'
- '**/*semantics*'
- any:
- '**/accessibility/*'
- '**/*accessibility*'
- '**/semantics/*'
- '**/*semantics*'
'a: animation':
- '**/animation/*'
- '**/*animation*'
- any:
- '**/animation/*'
- '**/*animation*''
'a: internationalization':
- packages/flutter_localizations/**/*
'a: tests':
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*
- packages/flutter_goldens_client/**/*
- packages/flutter_test/**/*
- any:
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*
- packages/flutter_goldens_client/**/*
- packages/flutter_test/**/*
'a: text input':
- '**/text/*'
- '**/*text*'
- any:
- '**/text/*'
- '**/*text*'
'd: api docs':
- examples/api/**/*
......@@ -39,42 +43,49 @@ engine:
- bin/internal/engine.version
'f: cupertino':
- '**/cupertino/*'
- '**/*cupertino*'
- any:
- '**/cupertino/*'
- '**/*cupertino*'
'f: focus':
- '**/focus/*'
- '**/*focus*'
- any:
- '**/focus/*'
- '**/*focus*'
'f: gestures':
- '**/gestures/*'
- '**/*gestures*'
- any:
- '**/gestures/*'
- '**/*gestures*'
'f: material design':
- '**/material/*'
- '**/*material*'
- any:
- '**/material/*'
- '**/*material*'
'f: routes':
- '**/navigator/*'
- '**/*navigator*'
- '**/route/*'
- '**/*route*'
- any:
- '**/navigator/*'
- '**/*navigator*'
- '**/route/*'
- '**/*route*'
'f: scrolling':
- '**/*scroll*'
- '**/scroll/*'
- '**/*sliver*'
- '**/sliver/*'
- '**/*viewport*'
- '**/viewport/*'
- any:
- '**/*scroll*'
- '**/scroll/*'
- '**/*sliver*'
- '**/sliver/*'
- '**/*viewport*'
- '**/viewport/*'
framework:
- packages/flutter/**/*
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*
- packages/flutter_goldens_client/**/*
- packages/flutter_test/**/*
- packages/integration_test/**/*
- any:
- packages/flutter/**/*
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*/
- packages/flutter_goldens_client/**/*
- packages/flutter_test/**/*
- packages/integration_test/**/*
integration_test:
- packages/integration_test/**/*
......@@ -83,24 +94,27 @@ platform-ios:
- packages/flutter_tools/lib/src/ios/**/*
team:
- '**/pubspec.yaml'
- '**/fix_data.yaml'
- '**/*.expect'
- '**/*test_fixes*'
- .github/**/*
- dev/**/*
- examples/**/*
- packages/flutter_goldens/**/*
- packages/flutter_goldens_client/**/*
'gallery':
- any:
- '**/pubspec.yaml'
- '**/fix_data.yaml'
- '**/*.expect'
- '**/*test_fixes*'
- .github/**/*
- dev/**/*
- examples/**/*
- packages/flutter_goldens/**/*
- packages/flutter_goldens_client/**/*
'team: gallery':
- examples/flutter_gallery/**/*
tech-debt:
- '**/fix_data.yaml'
- '**/*.expect'
- '**/*test_fixes*'
- any:
- '**/fix_data.yaml'
- '**/*.expect'
- '**/*test_fixes*'
tool:
- packages/flutter_tools/**/*
- packages/fuchsia_remote_debug_protocol/**/*
- any:
- packages/flutter_tools/**/*
- packages/fuchsia_remote_debug_protocol/**/*
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