From 982292a4e304e162f71b562a13e2b4522e5e48ea Mon Sep 17 00:00:00 2001 From: Ryan Lopopolo Date: Sun, 30 Aug 2026 14:44:50 -0700 Subject: [PATCH] ci: remove obsolete merge-blocking workflow Branch rulesets now own merge protection. Label-based blocking is no longer part of the repository merge policy, so remove the unused check. --- .github/workflows/block-merge.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/block-merge.yaml diff --git a/.github/workflows/block-merge.yaml b/.github/workflows/block-merge.yaml deleted file mode 100644 index f7488ce..0000000 --- a/.github/workflows/block-merge.yaml +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Merge -"on": - pull_request: - types: [opened, labeled, unlabeled, synchronize] -permissions: {} -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true -jobs: - labels: - name: Labels - runs-on: ubuntu-24.04 - permissions: - issues: write # required to read and write labels - pull-requests: write # required to read and write labels - - steps: - - uses: mheap/github-action-required-labels@0ac283b4e65c1fb28ce6079dea5546ceca98ccbe # v5.5.2 - with: - mode: exactly - count: 0 - labels: "S-do-not-merge, S-wip"