Skip to content

Commit

Permalink
update documentation and defaults for repository and except_untagged_…
Browse files Browse the repository at this point in the history
…multiplatform (#46)
  • Loading branch information
kkalev authored Nov 11, 2024
1 parent 1e7fb9c commit 1c77a06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,12 @@ delete all / untagged ghcr containers in a repository
# Default: true
# choices: true, false
untagged_only: true
# Except untagged multiplatform packages from deletion
# Exclude untagged multiplatform packages from deletion
# Manifests are usually such packages so they should be excluded
# only for untagged_only=true
# Default: true
# needs docker installed
except_untagged_multiplatform: false
except_untagged_multiplatform: true
# the owner type
# required: true
# choices: org, user
Expand Down
5 changes: 3 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ inputs:
required: true
repository:
description: 'Delete only from repository name'
default: ${{ github.repository }}
required: false
package_name:
description: 'Delete only from comma separated package names'
Expand All @@ -26,8 +27,8 @@ inputs:
description: 'Delete only package versions without tag'
default: true
except_untagged_multiplatform:
description: 'Except untagged multiplatform packages from deletion (only for --untagged_only)'
default: false
description: 'Exclude untagged multiplatform packages from deletion (only for --untagged_only)'
default: true
owner_type:
description : "Owner type (org or user)"
required: true
Expand Down

0 comments on commit 1c77a06

Please sign in to comment.