MiNiFi-CPP Github Actions Cache Eviction #1941
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: "MiNiFi-CPP Github Actions Cache Eviction" | |
on: | |
workflow_run: | |
workflows: ["MiNiFi-CPP CI"] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
ubuntu_20_04: | |
name: "ubuntu-20.04" | |
runs-on: ubuntu-20.04 | |
steps: | |
- id: checkout | |
uses: actions/checkout@v4 | |
- name: clear cache | |
run: | | |
python3 -m venv github_env | |
source github_env/bin/activate | |
pip install -r github_scripts/requirements.txt | |
python3 github_scripts/github_actions_cache_cleanup.py -t ${{github.token}} -r ${{github.repository}} |