Skip to content

chore: Update dependencies #17

chore: Update dependencies

chore: Update dependencies #17

Workflow file for this run

name: clear-pr-caches
on:
pull_request_target:
types: [ closed ]
permissions:
actions: write
jobs:
clear-caches:
runs-on: ubuntu-24.04
steps:
- name: clear-caches
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge
run: |
cacheKeysForPR=$(gh cache list --ref "$BRANCH" --limit 100 --json id --jq '.[].id')
set +e
for cacheKey in $cacheKeysForPR; do
gh cache delete "$cacheKey"
done