diff --git a/.github/workflows/README.md b/.github/workflows/README.md index 188f1178fba..69f9e9a6bb9 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -85,13 +85,6 @@ _Action:_ _Recovery:_ Check at the milestone for the related issues and update them manually. -### prune-github-container-registry [🔗](prune-github-container-registry.yaml) - -_Trigger:_ Every day or manually. - -_Action:_ Clean up old lib-injection OCI images from GitHub Container Registry. - -_Recovery:_ Manually trigger the action again. ### prune-old-pull-requests [🔗](prune-old-pull-requests.yaml) diff --git a/.github/workflows/prune-github-container-registry.yaml b/.github/workflows/prune-github-container-registry.yaml deleted file mode 100644 index 10c6b3ff51f..00000000000 --- a/.github/workflows/prune-github-container-registry.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Prune GitHub Container Registry -on: - schedule: - - cron: '15 3 * * *' - workflow_dispatch: - -jobs: - prune-init-images: - name: Prune dd-lib-java-init OCI images - runs-on: ubuntu-latest - permissions: - contents: read - packages: write # Required to delete images - steps: - - name: Prune registry - uses: vlaurin/action-ghcr-prune@0cf7d39f88546edd31965acba78cdcb0be14d641 #v0.6.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - organization: Datadog - container: dd-trace-java/dd-lib-java-init - keep-younger-than: 7 # days - keep-last: 10 - prune-tags-regexes: | - .+ - prune-untagged: true