Skip to content

Commit

Permalink
Fix labeler not actually doing any labeling (flutter#48701)
Browse files Browse the repository at this point in the history
flutter/flutter#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
  • Loading branch information
drewroengoogle authored Dec 5, 2023
1 parent d2ba188 commit fe253b0
Showing 1 changed file with 36 additions and 26 deletions.
62 changes: 36 additions & 26 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/**/*

0 comments on commit fe253b0

Please sign in to comment.