diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml deleted file mode 100644 index 0b0c8544d178..000000000000 --- a/.github/workflows/cleanup.yml +++ /dev/null @@ -1,21 +0,0 @@ -# Workflow deletes image artifacts that created by CI workflow -name: Delete image artifacts -on: - workflow_run: - workflows: [CI, Comment, Full] - types: - - completed - -jobs: - cleanup: - runs-on: ubuntu-latest - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - steps: - - name: Clean up - run: | - wri=${{ github.event.workflow_run.id }} - for ai in $(gh api /repos/${{ github.repository }}/actions/runs/$wri/artifacts | jq '.artifacts[] | select( .name | startswith("cvat")) | .id'); - do - gh api --method DELETE /repos/${{ github.repository }}/actions/artifacts/$ai - done