From b71247dcab9ad0338b1cde99a813cddefea4e6bc Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Tue, 7 Jan 2025 09:56:05 -0800 Subject: [PATCH] Migrate engine labeler to top level (#161212) Hoist engine/src/flutter/.github/labeler.yml to top-level labeler. --- .github/labeler.yml | 39 ++++++++++++++++- engine/src/flutter/.github/labeler.yml | 60 -------------------------- 2 files changed, 38 insertions(+), 61 deletions(-) delete mode 100644 engine/src/flutter/.github/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml index 2b57f9bc91b..978c1f3c165 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -25,6 +25,7 @@ - '**/linux/**/*' - '**/macos/**/*' - '**/windows/**/*' + - engine/src/flutter/shell/platform/darwin/common/**/* 'a: internationalization': - changed-files: @@ -60,6 +61,16 @@ - any-glob-to-any-file: - examples/**/* +'e: embedder': + - changed-files: + - any-glob-to-any-file: + - engine/src/flutter/shell/platform/embedder + +'e: impeller': + - changed-files: + - any-glob-to-any-file: + - engine/src/flutter/impeller/**/* + engine: - changed-files: - any-glob-to-any-file: @@ -139,18 +150,44 @@ platform-android: - changed-files: - any-glob-to-any-file: - docs/platform/android/**/* + - engine/src/flutter/shell/platform/android/**/* - packages/flutter_tools/*android*' - packages/flutter_tools/gradle/**/* platform-ios: - changed-files: - any-glob-to-any-file: + - engine/src/flutter/shell/platform/darwin/common/**/* + - engine/src/flutter/shell/platform/darwin/ios/**/* - packages/flutter_tools/lib/src/ios/**/* +platform-fuchsia: + - changed-files: + - any-glob-to-any-file: + - engine/src/flutter/shell/platform/fuchsia/**/* + +platform-linux: + - changed-files: + - any-glob-to-any-file: + - engine/src/flutter/shell/platform/linux/**/* + +platform-macos: + - changed-files: + - any-glob-to-any-file: + - engine/src/flutter/src/flutter/shell/platform/darwin/common/**/* + - engine/src/flutter/shell/platform/darwin/macos/**/* + platform-web: - changed-files: - any-glob-to-any-file: - - packages/flutter_web_plugins/**/* + - '**/web_sdk/**/*' + - engine/src/flutter/lib/web_ui/**/* + - packages/flutter_web_plugins + +platform-windows: + - changed-files: + - any-glob-to-any-file: + - engine/src/flutter/shell/platform/windows/**/* 'customer: gallery': - changed-files: diff --git a/engine/src/flutter/.github/labeler.yml b/engine/src/flutter/.github/labeler.yml deleted file mode 100644 index ed7171a9638..00000000000 --- a/engine/src/flutter/.github/labeler.yml +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 2013 The Flutter Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -# See https://github.com/actions/labeler/blob/main/README.md for docs. -'affects: desktop': - - changed-files: - - any-glob-to-any-file: - - shell/platform/darwin/common/**/* - - shell/platform/darwin/macos/**/* - - shell/platform/linux/**/* - - shell/platform/windows/**/* - -embedder: - - changed-files: - - any-glob-to-any-file: - - shell/platform/embedder - -'e: impeller': - - changed-files: - - any-glob-to-any-file: - - impeller/**/* - -platform-android: - - changed-files: - - any-glob-to-any-file: - - shell/platform/android/**/* - -platform-ios: - - changed-files: - - any-glob-to-any-file: - - shell/platform/darwin/common/**/* - - shell/platform/darwin/ios/**/* - -platform-fuchsia: - - changed-files: - - any-glob-to-any-file: - - shell/platform/fuchsia/**/* - -platform-linux: - - changed-files: - - any-glob-to-any-file: - - shell/platform/linux/**/* - -platform-macos: - - changed-files: - - any-glob-to-any-file: - - shell/platform/darwin/common/**/* - - shell/platform/darwin/macos/**/* - -platform-web: - - changed-files: - - any-glob-to-any-file: - - lib/web_ui/**/* - - '**/web_sdk/**/*' - -platform-windows: - - changed-files: - - any-glob-to-any-file: - - shell/platform/windows/**/*