Skip to content

Commit 3127f15

Browse files
committed
Revert "github actions: Switch to multiline string format suggested by GA docs"
This reverts commit 47f3cc4.
1 parent 47f3cc4 commit 3127f15

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/validate-kernel-commits.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,9 @@ jobs:
184184
FILTERED_OUTPUT=$(echo "$OUTPUT" | grep -v "jira-user\|jira-key\|basic_auth\|Authorization\|$JIRA_API_TOKEN")
185185
186186
echo "$FILTERED_OUTPUT"
187-
{
188-
echo "output<<EOF"
189-
echo "$FILTERED_OUTPUT"
190-
echo "EOF"
191-
} >> $GITHUB_OUTPUT
187+
echo "output<<'EOF'" >> $GITHUB_OUTPUT
188+
echo "$FILTERED_OUTPUT" >> $GITHUB_OUTPUT
189+
echo "EOF" >> $GITHUB_OUTPUT
192190
193191
# Check if there are any issues based on output patterns
194192
if echo "$FILTERED_OUTPUT" | grep -q "❌ Errors:"; then

0 commit comments

Comments
 (0)