Skip to content

Commit

Permalink
Merge pull request #480 from Adyen/ci-cleanup
Browse files Browse the repository at this point in the history
Make CI cleanup optional
  • Loading branch information
descorp authored Jun 28, 2024
2 parents 8e831ef + a3310dc commit 1d85aa8
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 1d85aa8

Please sign in to comment.