From 072dd81a9539550a68a2d6d892061162cada3c4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Thu, 30 Jan 2025 11:14:28 +0100 Subject: [PATCH] Remove: Drop obsolete workflow file This workflow file was used in conjunction with the old container build file and is obsolete now. --- .github/workflows/remove-container.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/remove-container.yml diff --git a/.github/workflows/remove-container.yml b/.github/workflows/remove-container.yml deleted file mode 100644 index d41470a6ae..0000000000 --- a/.github/workflows/remove-container.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Remove Pull Request Container Image Builds - -on: - pull_request: - branches: - - main - types: - - closed - -jobs: - remove-container-image: - permissions: - packages: write - name: Remove container image - runs-on: ubuntu-latest - steps: - - name: Remove container image - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - continue-on-error: true - run: | - gh api -X DELETE /orgs/${{ github.repository_owner }}/packages/container/${{ github.repository }}/${{ github.event.pull_request.head.ref }}