From 384c96827622cdc021d3d7fa85271985dcab585f Mon Sep 17 00:00:00 2001 From: Dusk-92 Date: Sat, 5 Sep 2026 23:24:49 +0200 Subject: [PATCH] Remove one-time cleanup workflow --- .github/workflows/cleanup-release-branch.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/cleanup-release-branch.yml diff --git a/.github/workflows/cleanup-release-branch.yml b/.github/workflows/cleanup-release-branch.yml deleted file mode 100644 index c7bdd84..0000000 --- a/.github/workflows/cleanup-release-branch.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Cleanup release branch - -on: - push: - branches: - - 'master' - -permissions: - contents: write - -jobs: - cleanup: - if: ${{ github.event.head_commit.message == 'cleanup release branch' }} - runs-on: ubuntu-latest - steps: - - name: Delete test release branch - env: - GH_TOKEN: ${{ github.token }} - run: gh api -X DELETE "repos/${GITHUB_REPOSITORY}/git/refs/heads/test%2Frelease-v1.0.0"