From 59702b6198c59b84f1695e37256ae351b331b604 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 Yaml syntax cleaned too. Fixes: https://github.com/ceph/ceph/pull/38107#issuecomment-729300615 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 23956a02fbdce..635b7757d984c 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: '' + repo-token: "${{ secrets.GITHUB_TOKEN }}"