-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,26 +10,25 @@ permissions: | |
packages: write | ||
|
||
jobs: | ||
purge-pr-untagged: | ||
name: Delete untagged images from ghcr.io | ||
purge-pr-package: | ||
name: Delete images from ghcr.io when PR is closed | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: chipkent/[email protected] | ||
name: Delete PR image from ghcr.io | ||
id: cleanup | ||
continue-on-error: true | ||
with: | ||
package-name: ${{ github.event.repository.name }} | ||
tag: pr-${{ github.event.pull_request.number }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/delete-package-versions@v4 | ||
if: job.steps.cleanup.status == success() | ||
name: Delete untagged images from ghcr.io | ||
continue-on-error: true | ||
with: | ||
package-name: "teslamate" | ||
package-type: "container" | ||
min-versions-to-keep: 0 | ||
delete-only-untagged-versions: "true" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
purge-pr-package: | ||
name: Delete image from ghcr.io | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: chipkent/[email protected] | ||
with: | ||
package-name: ${{ github.event.repository.name }} | ||
tag: pr-${{ github.event.pull_request.number }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |