From cdae9e494221162c36d1341a9db3265f500f4a88 Mon Sep 17 00:00:00 2001 From: Mason Daugherty Date: Sun, 21 Sep 2025 00:37:59 -0400 Subject: [PATCH] fix(infra): prevent labeler workflow from adding/removing same labels (#33039) The file-based and title-based labeler workflows were conflicting, causing the bot to add and remove identical labels in the same operation. Hopefully this fixes --- .github/workflows/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index acb85c01dad..6e4d60a0374 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -19,4 +19,4 @@ jobs: with: repo-token: "${{ secrets.GITHUB_TOKEN }}" configuration-path: .github/labeler.yml - sync-labels: true + sync-labels: false