From 1d7ed43b1ffcc51fe348f2c1f2d833d523ec359c Mon Sep 17 00:00:00 2001 From: kota2and3kan <47254383+kota2and3kan@users.noreply.github.com> Date: Mon, 15 Jan 2024 14:44:45 +0900 Subject: [PATCH] Remove problematic workflow "Remove untagged images" --- .github/workflows/remove-untagged-images.yaml | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/remove-untagged-images.yaml diff --git a/.github/workflows/remove-untagged-images.yaml b/.github/workflows/remove-untagged-images.yaml deleted file mode 100644 index aa3f20d..0000000 --- a/.github/workflows/remove-untagged-images.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# When we push a new SNAPSHOT image, the old SNAPSHOT image remains as an untagged -# image in GitHub Packages. We remove those untagged images by using this workflow. - -name: Remove untagged images - -on: - schedule: - # UTC - - cron: '0 3 * * 1' - workflow_dispatch: - -jobs: - remove-untagged-container-images: - runs-on: ubuntu-latest - - steps: - - - name: scalar-admin-for-kubernetes - uses: camargo/delete-untagged-action@v1 - with: - github-token: ${{ secrets.CR_PAT }} - package-name: scalar-admin-for-kubernetes