Skip to content

Commit 69821ea

Browse files
authored
Add testing to describe action (#1)
* Fix multiline custom guidelines * Add testing to describe action * Another test of old code * Remove testing
1 parent 79bb1d2 commit 69821ea

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ runs:
3434
shell: bash
3535
run: |
3636
if [ -n "$CUSTOM_GUIDELINES" ]; then
37-
echo "context=$(jq -n --arg guidelines "$CUSTOM_GUIDELINES" '{custom_guidelines: $guidelines}')" >> $GITHUB_OUTPUT
37+
echo 'context<<EOF' >> $GITHUB_OUTPUT
38+
echo "$(jq -n --arg guidelines "$CUSTOM_GUIDELINES" '{custom_guidelines: $guidelines}')" >> $GITHUB_OUTPUT
39+
echo 'EOF' >> $GITHUB_OUTPUT
3840
else
3941
echo "context={}" >> $GITHUB_OUTPUT
4042
fi

0 commit comments

Comments
 (0)