Skip to content

Commit 9d4f9ea

Browse files
committed
Fix description check
1 parent 81b5fb1 commit 9d4f9ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ runs:
9696
if [[ ! "${{ inputs.ignore }}" =~ description ]]; then
9797
echo "::group::description"
9898
echo "https://hacs.xyz/docs/publish/include#check-repository"
99-
if [ ! -z "${data}" ]; then
99+
if [ ! -z "${data}" ] && [ "${data}" != "null" ]; then
100100
echo "${data}"
101101
echo "✅ The repository has a description" >> "${{ github.action_path }}/result"
102102
else

0 commit comments

Comments
 (0)