From de163b730aff4b7b0dc04fdbdcc722f0e6110f26 Mon Sep 17 00:00:00 2001 From: Ernesto Puerta Date: Wed, 18 Nov 2020 13:00:00 +0100 Subject: [PATCH] github/labeler: disable sync-labels Fixes: https://github.com/ceph/ceph/pull/38107 Signed-off-by: Ernesto Puerta --- .github/workflows/labeler.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 23956a02fbdce2..0c855306986519 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -1,11 +1,11 @@ +--- name: "Pull Request Labeler" -on: -- pull_request_target - +on: pull_request_target jobs: - triage: + labeler: runs-on: ubuntu-latest steps: - - uses: actions/labeler@main - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" + - uses: actions/labeler@main + with: + sync-labels: false + repo-token: "${{ secrets.GITHUB_TOKEN }}"