From 2c90f06b72875fb68a1dc97b89a4f9edd86a3d24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jul 2026 16:20:23 +0000 Subject: [PATCH] chore: remove temporary cleanup workflow --- .../temp-cleanup-generated-content.yml | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/temp-cleanup-generated-content.yml diff --git a/.github/workflows/temp-cleanup-generated-content.yml b/.github/workflows/temp-cleanup-generated-content.yml deleted file mode 100644 index f2d2091..0000000 --- a/.github/workflows/temp-cleanup-generated-content.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Temporary cleanup generated content - -on: - push: - paths: - - .github/workflows/temp-cleanup-generated-content.yml - workflow_dispatch: - -permissions: - contents: write - -jobs: - cleanup: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - ref: main - fetch-depth: 0 - - name: Remove temporary branch - run: | - git push origin --delete fix/remaining-review-hardening || true - - name: Remove temporary workflow - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git rm -f .github/workflows/temp-cleanup-generated-content.yml - git commit -m "chore: remove temporary cleanup workflow" - git push origin main