[MDS-6205] Permit condition specific reports #2907
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clear GitHub Actions Cache | |
on: | |
pull_request: | |
workflow_dispatch: | |
# Manual trigger | |
jobs: | |
clean-cache: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set Permissions | |
run: | | |
chmod 755 ./gitops/clear_caches.sh | |
- name: Clear Cache | |
run: ./gitops/clear_caches.sh ${{ secrets.GITHUB_TOKEN }} | |