We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db7d10 commit 3f60b4bCopy full SHA for 3f60b4b
.github/workflows/validate-kernel-commits.yml
@@ -184,9 +184,11 @@ jobs:
184
FILTERED_OUTPUT=$(echo "$OUTPUT" | grep -v "jira-user\|jira-key\|basic_auth\|Authorization\|$JIRA_API_TOKEN")
185
186
echo "$FILTERED_OUTPUT"
187
- echo "output<<'EOF'" >> $GITHUB_OUTPUT
188
- echo "$FILTERED_OUTPUT" >> $GITHUB_OUTPUT
189
- echo "EOF" >> $GITHUB_OUTPUT
+ {
+ echo "output<<EOF"
+ echo "$FILTERED_OUTPUT"
190
+ echo "EOF"
191
+ } >> $GITHUB_OUTPUT
192
193
# Check if there are any issues based on output patterns
194
if echo "$FILTERED_OUTPUT" | grep -q "❌ Errors:"; then
0 commit comments