Skip to content

build(deps): bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 in /tools/pika_exporter #506

build(deps): bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 in /tools/pika_exporter

build(deps): bump github.com/sirupsen/logrus from 1.9.0 to 1.9.1 in /tools/pika_exporter #506

Workflow file for this run

name: Cleanup Caches By a Branch
on:
pull_request:
types:
- closed
jobs:
cleanup:
runs-on: ubuntu-latest
steps:
- name: Cleanup
run: |
gh extension install actions/gh-actions-cache
for cacheKey in $(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 )
do
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
done
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
BRANCH: refs/pull/${{ github.event.pull_request.number }}/merge