Skip to content

Commit e1d14e0

Browse files
committed
fix error
Signed-off-by: Andrew Brandt <[email protected]>
1 parent fdf2cfa commit e1d14e0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

action.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ runs:
9292
" - name: \($repoName)" +
9393
(
9494
.value
95-
| map(select(.value != "")) # skip blank-value fields
95+
| map(select(.value != ""))
9696
| if length > 0 then
97-
"\n" + map(" \(.property_name): \"\(.value)\"") | join("\n")
97+
"\n" + (map(" \(.property_name): \"\(.value)\"") | join("\n"))
9898
else
9999
""
100100
end
@@ -104,6 +104,7 @@ runs:
104104
} > repo-properties.yaml
105105
106106
echo "YAML written to repo-properties.yaml"
107+
107108

108109
- name: Print out the repo-properties.yaml
109110
shell: bash

0 commit comments

Comments
 (0)