[FIX] - don't produce random credential id in method #2914
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 }} | |