Fix broken CI #35
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: Clean up PR cache | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- main | |
jobs: | |
preprocess: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Clean up PR cache | |
shell: bash -l {0} | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git push origin --delete _cookbook_data_PR${{ github.event.number }} |