mirror of
https://github.com/logos-co/nomos-node.git
synced 2026-08-31 11:31:09 +00:00
29 lines
692 B
YAML
29 lines
692 B
YAML
name: Clear GitHub Runner caches on PR close
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- closed
|
|
|
|
jobs:
|
|
clear-caches:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
steps:
|
|
- name: Prune Cargo Hack Cache
|
|
uses: ./.github/actions/prune-cache
|
|
continue-on-error: true
|
|
with:
|
|
github-token: ${{ inputs.github-token }}
|
|
key-prefix: "cargo-hack-check/"
|
|
ref: ${{ github.ref }}
|
|
|
|
- name: Prune Code Check Cache
|
|
uses: ./.github/actions/prune-cache
|
|
continue-on-error: true
|
|
with:
|
|
github-token: ${{ inputs.github-token }}
|
|
key-prefix: "code-check/"
|
|
ref: ${{ github.ref }}
|