From aaa5c3fe74539747af3ab7f05842594a5a20de97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFs=20Postula?= Date: Wed, 27 Sep 2023 20:33:07 +0200 Subject: [PATCH] chore: add workflow to clean cache of closed pr --- .github/workflows/clean_cache.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/clean_cache.yml diff --git a/.github/workflows/clean_cache.yml b/.github/workflows/clean_cache.yml new file mode 100644 index 0000000..eef7887 --- /dev/null +++ b/.github/workflows/clean_cache.yml @@ -0,0 +1,10 @@ +name: Removed unneeded cache once a pr is closed +on: + pull_request: + types: + - closed + +jobs: + clean-cache: + uses: ForesightMiningSoftwareCorporation/github/.github/workflows/clear-cache-closed-pr.yml@v1 + secrets: inherit \ No newline at end of file