Skip to content

Commit aefb78d

Browse files
committed
style: missing tags message (notice)
1 parent 51692eb commit aefb78d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dc/registry_delete.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ if [ -n "$DELETE_SINCE_DAYS" ]; then
4343
echo "::notice::Deleting images older than $DELETE_SINCE_DAYS days"
4444
repo_tags=$(curl -s -u $HTTPS_USERNAME https://$REGISTRY_URL/v2/$GITHUB_OWNER/$APP_NAME/tags/list | jq -r '.tags[]?')
4545
if [ -z "$repo_tags" ]; then
46-
echo "::warning::No images found for $APP_NAME"
46+
echo "::notice::No images found for $APP_NAME"
4747
exit 0
4848
fi
49-
49+
5050
while IFS= read -r tag; do
5151
manifest=$(curl -s -u $HTTPS_USERNAME \
5252
-H "Accept: application/vnd.docker.distribution.manifest.v2+json" \

0 commit comments

Comments
 (0)