From 6cca0158228d1b64672a00d15f2902d6cd98bd4f Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Mon, 29 Jan 2024 17:40:13 -0600 Subject: [PATCH] .github/workflows: disable sync-labels in pr-triage `sync-labels` is defined as "Whether or not to remove labels when matching files are reverted or no longer changed by the PR". We should disable this in case someone manually adds a label, so the label doesn't get removed. Signed-off-by: Laura Flores --- .github/workflows/pr-triage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-triage.yml b/.github/workflows/pr-triage.yml index 24b1c97db708a..2edb25f3ad89f 100644 --- a/.github/workflows/pr-triage.yml +++ b/.github/workflows/pr-triage.yml @@ -11,7 +11,7 @@ jobs: # https://github.com/marketplace/actions/labeler?version=v4.0.2 uses: actions/labeler@5c7539237e04b714afd8ad9b4aed733815b9fab4 with: - sync-labels: '' + sync-labels: false repo-token: "${{ secrets.GITHUB_TOKEN }}" - name: Assign to Dashboard project # https://github.com/marketplace/actions/add-to-github-projects?version=v0.5.0