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