chore: add "package cleanup" step to devcontainer

This commit is contained in:
Matthias
2026-01-15 19:51:43 +01:00
parent 93f2cf5db7
commit 4917a0abe5

View File

@@ -43,3 +43,14 @@ jobs:
imageName: ghcr.io/${{ github.repository }}-devcontainer
cacheFrom: ghcr.io/${{ github.repository }}-devcontainer
push: always
packages-cleanup:
name: "Docker Package Cleanup"
uses: ./.github/workflows/packages-cleanup.yml
# Only run on push, schedule, or release events
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.repository == 'freqtrade/freqtrade'
permissions:
packages: write # Needed to delete package versions
with:
package_name: 'freqtrade-devcontainer'