From 5697a5b3012323f2e776b1c33f8b4ac467bafe64 Mon Sep 17 00:00:00 2001 From: Ray Ryan Date: Tue, 6 May 2025 13:11:36 -0700 Subject: [PATCH] Deletes delete-pr-branch-caches.yml Hasn't worked in ages, nothing seems to be going wrong. --- .github/workflows/delete-pr-branch-caches.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/delete-pr-branch-caches.yml diff --git a/.github/workflows/delete-pr-branch-caches.yml b/.github/workflows/delete-pr-branch-caches.yml deleted file mode 100644 index 1ec166550b..0000000000 --- a/.github/workflows/delete-pr-branch-caches.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Delete Unused Caches - -on: - pull_request: - types: [ closed ] - -jobs: - - # This deletes the caches created by the branch while it was in PR. - # Those caches are inaccessible to it once it's merged, so they can be deleted. - delete-orphaned-caches: - runs-on: ubuntu-latest - steps: - - uses: snnaplab/delete-branch-cache-action@v1 - with: - # Specify explicitly because the ref at the time of merging - # will be a branch name such as 'main', 'develop' - ref: refs/pull/${{ github.event.number }}/merge