Unverified Commit a82ae232 authored by Drew Roen's avatar Drew Roen Committed by GitHub

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.
parent ea97fc48
......@@ -4,65 +4,80 @@
# See https://github.com/actions/labeler/blob/main/README.md for docs.
'a: accessibility':
- any:
- '**/accessibility/*'
- '**/*accessibility*'
- '**/semantics/*'
- '**/*semantics*'
'a: animation':
- any:
- '**/animation/*'
- '**/*animation*'
'a: desktop':
- any:
- '**/linux/**/*'
- '**/macos/**/*'
- '**/windows/**/*'
'a: internationalization':
- any:
- packages/flutter_localizations/**/*
'a: tests':
- any:
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*
- packages/flutter_goldens_client/**/*
- packages/flutter_test/**/*
'a: text input':
- any:
- '**/text/*'
- '**/*text*'
'd: api docs':
- any:
- examples/api/**/*
'd: examples':
- any:
- examples/**/*
engine:
- any:
- bin/internal/engine.version
'f: cupertino':
- any:
- '**/cupertino/*'
- '**/*cupertino*'
'f: focus':
- any:
- '**/focus/*'
- '**/*focus*'
'f: gestures':
- any:
- '**/gestures/*'
- '**/*gestures*'
'f: material design':
- any:
- '**/material/*'
- '**/*material*'
'f: routes':
- any:
- '**/navigator/*'
- '**/*navigator*'
- '**/route/*'
- '**/*route*'
'f: scrolling':
- any:
- '**/*scroll*'
- '**/scroll/*'
- '**/*sliver*'
......@@ -71,6 +86,7 @@ engine:
- '**/viewport/*'
framework:
- any:
- packages/flutter/**/*
- packages/flutter_driver/**/*
- packages/flutter_goldens/**/*
......@@ -80,19 +96,24 @@ framework:
- examples/api/**/*
'f: integration_test':
- any:
- packages/integration_test/**/*
platform-ios:
- any:
- packages/flutter_tools/lib/src/ios/**/*
'customer: gallery':
- any:
- examples/flutter_gallery/**/*
'c: tech-debt':
- any:
- '**/fix_data.yaml'
- '**/*.expect'
- '**/*test_fixes*'
tool:
- any:
- packages/flutter_tools/**/*
- packages/fuchsia_remote_debug_protocol/**/*
......@@ -17,6 +17,6 @@ jobs:
runs-on: ubuntu-latest
steps:
# Source available at https://github.com/actions/labeler/blob/main/README.md
- uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9
with:
sync-labels: ''
sync-labels: true
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