From 6e254a3f9fb7353b043d10ed70fb9553bf84ea2d Mon Sep 17 00:00:00 2001 From: Casey Hillers Date: Thu, 8 Jun 2023 08:44:37 -0700 Subject: [PATCH] [labeler] Set sync labels to false to stop removing labels (#128446) https://github.com/flutter/flutter/issues/128440 The current version of the action has a bug where the sync-labels default value is not read correctly. Explicitly setting to see if that stops the removals. --- .github/workflows/labeler.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index cd7212c5e438..6efaf8bdd8e6 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -18,3 +18,5 @@ jobs: steps: # Source available at https://github.com/actions/labeler/blob/main/README.md - uses: actions/labeler@9fcb2c2f5584144ca754f8bfe8c6f81e77753375 + with: + sync-labels: false