From 27429ad3a0e43be436f8c6e59b2b77fa17b703e1 Mon Sep 17 00:00:00 2001 From: Frederic Leger Date: Tue, 14 Jan 2025 18:18:09 +0100 Subject: [PATCH] ci: remove pr clean workflow (handled in main) --- .github/workflows/pull-request-clean.yml | 29 ------------------------ 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/pull-request-clean.yml diff --git a/.github/workflows/pull-request-clean.yml b/.github/workflows/pull-request-clean.yml deleted file mode 100644 index 1f0785c..0000000 --- a/.github/workflows/pull-request-clean.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Clean Pull requests resources after close -name: "Pull request - Clean" - -on: - pull_request_target: - types: - - closed - -permissions: - contents: read - packages: write - issues: read - -jobs: - get-available-images-matrix: - uses: ./.github/workflows/__shared-get-available-images-matrix.yml - - clean-images: - needs: get-available-images-matrix - name: Clean images - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - image: ${{ fromJson(needs.get-available-images-matrix.outputs.images-matrix) }} - steps: - - uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@0.19.0 - with: - image: ${{ matrix.image }}