-
-
Notifications
You must be signed in to change notification settings - Fork 86
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
1 parent
3919ed2
commit a252f63
Showing
1 changed file
with
4 additions
and
13 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 |
---|---|---|
|
@@ -21,21 +21,17 @@ jobs: | |
with: | ||
skip-shas: ${{ steps.multi-arch-digests.outputs.multi-arch-digests }} | ||
# The type of account. Can be either 'org' or 'personal'. | ||
account-type: org | ||
# The name of the organization. Only required if the account type is 'personal'. | ||
org-name: sysadminsmedia # optional, default is | ||
account: sysadminsmedia | ||
# Image name to delete. Supports passing several names as a comma-separated list. | ||
image-names: homebox | ||
# The cut-off for which to delete images older than. For example '2 days ago UTC'. Timezone is required. | ||
cut-off: 90 days ago UTC | ||
# Personal access token with read and delete scopes. | ||
token: ${{ secrets.CLEANUP_PAT }} | ||
# Restrict deletions to images without specific tags. Supports Unix-shell style wildcards | ||
skip-tags: latest,latest-rootless,0.*,0.*-rootless,main,main-rootless,vnext,vnext-rootless,0,0-rootless # optional | ||
skip-tags: "!latest,!latest-rootless,!0.*,!0.*-rootless,!main,!main-rootless,!vnext,!vnext-rootless,!0,!0-rootless" # optional | ||
# Do not actually delete images. Print output showing what would have been deleted. | ||
dry-run: true # optional, default is false | ||
# The token type. Can be either 'pat' or 'github-token'. If 'github-token', then image-names must the package name of repository from where this action is invoked. | ||
token-type: pat # optional, default is pat | ||
|
||
delete-old-images-devcache: | ||
name: Delete Cache Old Images | ||
|
@@ -46,16 +42,11 @@ jobs: | |
- uses: snok/[email protected] | ||
with: | ||
# The type of account. Can be either 'org' or 'personal'. | ||
account-type: org | ||
# The name of the organization. Only required if the account type is 'personal'. | ||
org-name: sysadminsmedia # optional, default is | ||
# Image name to delete. Supports passing several names as a comma-separated list. | ||
account: sysadminsmedia | ||
image-names: devcache | ||
# The cut-off for which to delete images older than. For example '2 days ago UTC'. Timezone is required. | ||
cut-off: 90 days ago UTC | ||
# Personal access token with read and delete scopes. | ||
token: ${{ secrets.CLEANUP_PAT }} | ||
# Do not actually delete images. Print output showing what would have been deleted. | ||
dry-run: false # optional, default is false | ||
# The token type. Can be either 'pat' or 'github-token'. If 'github-token', then image-names must the package name of repository from where this action is invoked. | ||
token-type: pat # optional, default is pat | ||
dry-run: true # optional, default is false |