Update labeler version, fix yaml to work with v5 (#139564)
This fixes https://github.com/flutter/flutter/issues/139511 * A bug has been fixed with `sync-labels`, meaning this needs to be a boolean now. Setting to `true` to match v4 logic. * in `labeler.yml`, all labels must be a list of globs, so updated them all to be a list of `any`. * Update the version to v5 This is a little annoying to test, since the way github actions works means that changes to workflows aren't run until after they are merged. A workaround is I forked these labeler changes to a new branch in my own repo and created a PR to merge to that branch, seen here: https://github.com/drewroengoogle/flutter/actions/runs/7102118110/job/19331743809?pr=2. Note the step `Run actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9` which ensures we are running on the latest labeler version in that check.
This commit is contained in:
parent
ea97fc4891
commit
a82ae2322d
125
.github/labeler.yml
vendored
125
.github/labeler.yml
vendored
@ -4,95 +4,116 @@
|
|||||||
|
|
||||||
# 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: desktop':
|
'a: desktop':
|
||||||
- '**/linux/**/*'
|
- any:
|
||||||
- '**/macos/**/*'
|
- '**/linux/**/*'
|
||||||
- '**/windows/**/*'
|
- '**/macos/**/*'
|
||||||
|
- '**/windows/**/*'
|
||||||
|
|
||||||
'a: internationalization':
|
'a: internationalization':
|
||||||
- packages/flutter_localizations/**/*
|
- any:
|
||||||
|
- 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/**/*
|
- any:
|
||||||
|
- examples/api/**/*
|
||||||
|
|
||||||
'd: examples':
|
'd: examples':
|
||||||
- examples/**/*
|
- any:
|
||||||
|
- examples/**/*
|
||||||
|
|
||||||
engine:
|
engine:
|
||||||
- bin/internal/engine.version
|
- any:
|
||||||
|
- 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/**/*
|
||||||
- examples/api/**/*
|
- packages/integration_test/**/*
|
||||||
|
- examples/api/**/*
|
||||||
|
|
||||||
'f: integration_test':
|
'f: integration_test':
|
||||||
- packages/integration_test/**/*
|
- any:
|
||||||
|
- packages/integration_test/**/*
|
||||||
|
|
||||||
platform-ios:
|
platform-ios:
|
||||||
- packages/flutter_tools/lib/src/ios/**/*
|
- any:
|
||||||
|
- packages/flutter_tools/lib/src/ios/**/*
|
||||||
|
|
||||||
'customer: gallery':
|
'customer: gallery':
|
||||||
- examples/flutter_gallery/**/*
|
- any:
|
||||||
|
- examples/flutter_gallery/**/*
|
||||||
|
|
||||||
'c: tech-debt':
|
'c: 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/**/*
|
||||||
|
4
.github/workflows/labeler.yml
vendored
4
.github/workflows/labeler.yml
vendored
@ -17,6 +17,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
# Source available at https://github.com/actions/labeler/blob/main/README.md
|
# Source available at https://github.com/actions/labeler/blob/main/README.md
|
||||||
- uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594
|
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9
|
||||||
with:
|
with:
|
||||||
sync-labels: ''
|
sync-labels: true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user