Skip to content

Commit 22ebe2e

Browse files
Fix yaml errors
Signed-off-by: Shreeya Patel <spatel@ciq.com>
1 parent 675ea16 commit 22ebe2e

File tree

1 file changed

+27
-23
lines changed

1 file changed

+27
-23
lines changed

.github/workflows/kernel-build-and-test-x86_64.yml

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -434,40 +434,44 @@ jobs:
434434
- **Note:** Manual review recommended to ensure no regressions"
435435
fi
436436
437-
# Create PR body
437+
# Create PR body - part 1
438438
cat > pr_body.md << 'PRBODY'
439-
## Summary
440-
This PR has been automatically created after successful completion of all CI stages.
439+
## Summary
440+
This PR has been automatically created after successful completion of all CI stages.
441441

442-
## Commit Message(s)
443-
```
442+
## Commit Message(s)
443+
```
444444
PRBODY
445+
446+
# Add commit message
445447
cat /tmp/commit_message.txt >> pr_body.md
448+
449+
# Create PR body - part 2
446450
cat >> pr_body.md << 'PRBODY'
447-
```
451+
```
448452

449-
## Test Results
453+
## Test Results
450454

451-
### ✅ Build Stage
452-
- Status: Passed
453-
- Build Time: ${{ steps.build_info.outputs.build_time }}
454-
- Total Time: ${{ steps.build_info.outputs.total_time }}
455-
- [View build logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
455+
### ✅ Build Stage
456+
- Status: Passed
457+
- Build Time: ${{ steps.build_info.outputs.build_time }}
458+
- Total Time: ${{ steps.build_info.outputs.total_time }}
459+
- [View build logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
456460

457-
### ✅ Boot Verification
458-
- Status: Passed
459-
- [View boot logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
461+
### ✅ Boot Verification
462+
- Status: Passed
463+
- [View boot logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
460464

461-
### ✅ Kernel Selftests
462-
- **Passed:** ${{ steps.stats.outputs.passed }}
463-
- **Failed:** ${{ steps.stats.outputs.failed }}
464-
- [View kselftest logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
465+
### ✅ Kernel Selftests
466+
- **Passed:** ${{ steps.stats.outputs.passed }}
467+
- **Failed:** ${{ steps.stats.outputs.failed }}
468+
- [View kselftest logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
465469

466-
$COMPARISON_SECTION
470+
$COMPARISON_SECTION
467471

468-
---
469-
🤖 This PR was automatically generated by GitHub Actions
470-
Run ID: ${{ github.run_id }}
472+
---
473+
🤖 This PR was automatically generated by GitHub Actions
474+
Run ID: ${{ github.run_id }}
471475
PRBODY
472476

473477
# Check if PR already exists

0 commit comments

Comments
 (0)