Skip to content

Commit

Permalink
chore: make cleanup optional
Browse files Browse the repository at this point in the history
  • Loading branch information
descorp authored Jun 27, 2024
1 parent 8e831ef commit a3310dc
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,16 @@ jobs:
runs-on: ubuntu-latest
needs: [run-sonar]
if: always()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Delete temporary cache
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Delete temporary Node cache
continue-on-error: true
run: |
gh cache delete temp-lib-${{ github.sha }}
gh cache delete temp-node-${{ github.sha }}
- name: Delete temporary Lib cache
continue-on-error: true
run: |
gh cache delete temp-lib-${{ github.sha }}

0 comments on commit a3310dc

Please sign in to comment.