Skip to content

Commit 0188ccc

Browse files
committed
Fix multiline conflicts output var
1 parent 0a7258d commit 0188ccc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/label.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,10 @@ jobs:
9797
git commit -C ${MERGE_COMMIT_SHA} --no-verify
9898
fi
9999
fi
100-
echo "conflicts=${conflicts}" >> $GITHUB_OUTPUT
100+
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
101+
echo "conflicts<<$EOF" >> $GITHUB_OUTPUT
102+
echo "$conflicts" >> $GITHUB_OUTPUT
103+
echo "$EOF" >> $GITHUB_OUTPUT
101104
exit ${RES}
102105
103106
- name: Resolve Merge Conflicts with Gemini CLI

0 commit comments

Comments
 (0)