Fix labeler not actually doing any labeling (#139596)

https://github.com/flutter/flutter/issues/139511

The initial formatting that landed just prevented it from failing, but it turns out the new format is completely overhauled.
This commit is contained in:
Drew Roen 2023-12-05 16:43:05 -06:00 committed by GitHub
parent 5bce16dee5
commit e69024d6ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

63
.github/labeler.yml vendored
View File

@ -4,80 +4,95 @@
# See https://github.com/actions/labeler/blob/main/README.md for docs.
'a: accessibility':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/accessibility/*'
- '**/*accessibility*'
- '**/semantics/*'
- '**/*semantics*'
'a: animation':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/animation/*'
- '**/*animation*'
'a: desktop':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/linux/**/*'
- '**/macos/**/*'
- '**/windows/**/*'
'a: internationalization':
- any:
- changed-files:
- any-glob-to-any-file:
- packages/flutter_localizations/**/*
'a: tests':
- any:
- changed-files:
- any-glob-to-any-file:
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*
- packages/flutter_goldens_client/**/*
- packages/flutter_test/**/*
'a: text input':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/text/*'
- '**/*text*'
'd: api docs':
- any:
- changed-files:
- any-glob-to-any-file:
- examples/api/**/*
'd: examples':
- any:
- changed-files:
- any-glob-to-any-file:
- examples/**/*
engine:
- any:
- changed-files:
- any-glob-to-any-file:
- bin/internal/engine.version
'f: cupertino':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/cupertino/*'
- '**/*cupertino*'
'f: focus':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/focus/*'
- '**/*focus*'
'f: gestures':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/gestures/*'
- '**/*gestures*'
'f: material design':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/material/*'
- '**/*material*'
'f: routes':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/navigator/*'
- '**/*navigator*'
- '**/route/*'
- '**/*route*'
'f: scrolling':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/*scroll*'
- '**/scroll/*'
- '**/*sliver*'
@ -86,7 +101,8 @@ engine:
- '**/viewport/*'
framework:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/flutter/**/*
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*
@ -96,24 +112,29 @@ framework:
- examples/api/**/*
'f: integration_test':
- any:
- changed-files:
- any-glob-to-any-file:
- packages/integration_test/**/*
platform-ios:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/flutter_tools/lib/src/ios/**/*
'customer: gallery':
- any:
- changed-files:
- any-glob-to-any-file:
- examples/flutter_gallery/**/*
'c: tech-debt':
- any:
- changed-files:
- any-glob-to-any-file:
- '**/fix_data.yaml'
- '**/*.expect'
- '**/*test_fixes*'
tool:
- any:
- changed-files:
- any-glob-to-any-file:
- packages/flutter_tools/**/*
- packages/fuchsia_remote_debug_protocol/**/*