mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-17 17:46:40 +00:00
add cache deletion for closed PRs
This commit is contained in:
parent
c63053adf2
commit
1f49d59e6b
1 changed files with 30 additions and 0 deletions
30
.github/workflows/checks.yml
vendored
30
.github/workflows/checks.yml
vendored
|
@ -11,6 +11,10 @@ on:
|
|||
- '!*.md'
|
||||
- '.github/workflows/*.yml'
|
||||
|
||||
pull_request_target:
|
||||
branches: [ master ]
|
||||
types: [closed]
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
checks: write
|
||||
|
@ -72,3 +76,29 @@ jobs:
|
|||
uses: ./.github/workflows/build.yml
|
||||
needs: format
|
||||
secrets: inherit
|
||||
|
||||
cleanup:
|
||||
if: github.event.pull_request.merged == false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup gh extension
|
||||
run: |
|
||||
gh extension install actions/gh-actions-cache
|
||||
|
||||
- name: Cleanup
|
||||
run: |
|
||||
echo "Fetching list of cache keys"
|
||||
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 )
|
||||
|
||||
## Setting 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
|
||||
done
|
||||
echo "Done"
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
REPO: ${{ github.repository }}
|
||||
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge
|
||||
|
|
Loading…
Reference in a new issue