Skip to content

Commit

Permalink
[ci] Cleanup caches in the target repo (#1758)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntadej authored Oct 16, 2023
1 parent ca88936 commit 587dabf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/cache-cleanup.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cleanup-branch-caches
on:
pull_request:
pull_request_target:
types:
- closed
workflow_dispatch:
Expand All @@ -20,19 +20,19 @@ jobs:
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
REPO=${{ github.repository }}
BRANCH=refs/pull/${{ github.event.pull_request.number }}/merge
REPO="${{ github.repository }}"
BRANCH="refs/pull/${{ github.event.pull_request.number }}/merge"
echo "Fetching list of cache key"
cacheKeysForPR="$(gh actions-cache list -R "$REPO" -B "$BRANCH" | cut -f 1 )"
cacheKeysForPR=$(gh actions-cache list -R "$REPO" -B "$BRANCH" | cut -f 1 )
## Setting this to not fail the workflow while deleting cache keys.
# set this to not fail the workflow while deleting cache keys
set +e
echo "Deleting caches..."
for cacheKey in $cacheKeysForPR
do
gh actions-cache delete "$cacheKey" -R "$REPO" -B "$BRANCH" --confirm
gh actions-cache delete "$cacheKey" -R "$REPO" -B "$BRANCH" --confirm
done
echo "Done"
env:
Expand Down

0 comments on commit 587dabf

Please sign in to comment.