From 29bb794a3d0c4a9a6452d26877bb1d3dbe898eb3 Mon Sep 17 00:00:00 2001 From: Jeremy Leibs Date: Wed, 24 Apr 2024 08:54:57 -0400 Subject: [PATCH] Remove the labels check from the template --- .github/workflows/labels.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/labels.yml diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml deleted file mode 100644 index 2c67f7b..0000000 --- a/.github/workflows/labels.yml +++ /dev/null @@ -1,34 +0,0 @@ -# Copied from https://github.com/rerun-io/rerun_template - -# https://github.com/marketplace/actions/require-labels -# Check for existence of labels -# See all our labels at https://github.com/rerun-io/rerun/issues/labels - -name: PR Labels - -on: - pull_request: - types: - - opened - - synchronize - - reopened - - labeled - - unlabeled - -jobs: - label: - runs-on: ubuntu-latest - steps: - - name: Check for a "do-not-merge" label - uses: mheap/github-action-required-labels@v3 - with: - mode: exactly - count: 0 - labels: "do-not-merge" - - - name: Require label "include in changelog" or "exclude from changelog" - uses: mheap/github-action-required-labels@v3 - with: - mode: minimum - count: 1 - labels: "exclude from changelog, include in changelog"