@@ -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+ ` ` ` 
444444PRBODY 
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 }} 
471475PRBODY 
472476
473477        #  Check if PR already exists
0 commit comments