From 4b6bc4d865cd203e2f579cadacdf61a4dc76aeb3 Mon Sep 17 00:00:00 2001 From: Lukas Audzevicius Date: Tue, 9 Jul 2024 15:27:58 +0100 Subject: [PATCH] (CAT-1954) Remove labeller workflow We have decided to remove the labeller workflow as it is no longer deemed necessary. This commit removes the workflow from the repository and will be part of a multistep work piece. --- .github/workflows/labeller.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/labeller.yml diff --git a/.github/workflows/labeller.yml b/.github/workflows/labeller.yml deleted file mode 100644 index ee149bf5..00000000 --- a/.github/workflows/labeller.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Labeller - -on: - issues: - types: - - opened - - labeled - - unlabeled - pull_request_target: - types: - - opened - - labeled - - unlabeled - -jobs: - label: - runs-on: ubuntu-latest - steps: - - - uses: puppetlabs/community-labeller@v1.0.1 - name: Label issues or pull requests - with: - label_name: community - label_color: '5319e7' - org_membership: puppetlabs - fail_if_member: 'true' - token: ${{ secrets.IAC_COMMUNITY_LABELER }}