From aa7f74d3ed912fa6cc9aa846aa767c8d8ca33754 Mon Sep 17 00:00:00 2001 From: Original Gary Date: Tue, 28 Apr 2026 00:15:02 +1000 Subject: [PATCH] chore: delete setup-labels.yml workflow --- .github/workflows/setup-labels.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/setup-labels.yml diff --git a/.github/workflows/setup-labels.yml b/.github/workflows/setup-labels.yml deleted file mode 100644 index 87ce7474..00000000 --- a/.github/workflows/setup-labels.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Setup Labels - -on: - workflow_dispatch: - -jobs: - labels: - runs-on: ubuntu-latest - steps: - - name: Create auto-merge label - run: | - gh label create "auto-merge" --color "0075ca" --description "Agent-approved Level 0 PR — merge automatically after CI passes" --repo "$GITHUB_REPOSITORY" 2>/dev/null || true - gh label create "needs-human-review" --color "e4e669" --description "Level 1 PR — async human review within 24h" --repo "$GITHUB_REPOSITORY" 2>/dev/null || true - gh label create "human-gate" --color "d93f0b" --description "Level 2 PR — must have explicit human approval before merge" --repo "$GITHUB_REPOSITORY" 2>/dev/null || true - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}