From fd679d8a87f66aef47f44c34b57527d4fe8676d3 Mon Sep 17 00:00:00 2001 From: Drew Roen <102626803+drewroengoogle@users.noreply.github.com> Date: Tue, 5 Dec 2023 17:10:27 -0600 Subject: [PATCH] Fix labeler not actually doing any labeling (flutter/engine#48701) 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. [C++, Objective-C, Java style guides]: https://github.com/flutter/engine/blob/main/CONTRIBUTING.md#style --- engine/src/flutter/.github/labeler.yml | 62 +++++++++++++++----------- 1 file changed, 36 insertions(+), 26 deletions(-) diff --git a/engine/src/flutter/.github/labeler.yml b/engine/src/flutter/.github/labeler.yml index dcd252d32dc..ed7171a9638 100644 --- a/engine/src/flutter/.github/labeler.yml +++ b/engine/src/flutter/.github/labeler.yml @@ -4,47 +4,57 @@ # See https://github.com/actions/labeler/blob/main/README.md for docs. 'affects: desktop': - - any: - - shell/platform/darwin/common/**/* - - shell/platform/darwin/macos/**/* - - shell/platform/linux/**/* - - shell/platform/windows/**/* + - changed-files: + - any-glob-to-any-file: + - shell/platform/darwin/common/**/* + - shell/platform/darwin/macos/**/* + - shell/platform/linux/**/* + - shell/platform/windows/**/* embedder: - - any: - - shell/platform/embedder + - changed-files: + - any-glob-to-any-file: + - shell/platform/embedder 'e: impeller': - - any: - - impeller/**/* + - changed-files: + - any-glob-to-any-file: + - impeller/**/* platform-android: - - any: - - shell/platform/android/**/* + - changed-files: + - any-glob-to-any-file: + - shell/platform/android/**/* platform-ios: - - any: - - shell/platform/darwin/common/**/* - - shell/platform/darwin/ios/**/* + - changed-files: + - any-glob-to-any-file: + - shell/platform/darwin/common/**/* + - shell/platform/darwin/ios/**/* platform-fuchsia: - - any: - - shell/platform/fuchsia/**/* + - changed-files: + - any-glob-to-any-file: + - shell/platform/fuchsia/**/* platform-linux: - - any: - - shell/platform/linux/**/* + - changed-files: + - any-glob-to-any-file: + - shell/platform/linux/**/* platform-macos: - - any: - - shell/platform/darwin/common/**/* - - shell/platform/darwin/macos/**/* + - changed-files: + - any-glob-to-any-file: + - shell/platform/darwin/common/**/* + - shell/platform/darwin/macos/**/* platform-web: - - any: - - lib/web_ui/**/* - - '**/web_sdk/**/*' + - changed-files: + - any-glob-to-any-file: + - lib/web_ui/**/* + - '**/web_sdk/**/*' platform-windows: - - any: - - shell/platform/windows/**/* + - changed-files: + - any-glob-to-any-file: + - shell/platform/windows/**/*