Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/kernel-build-and-test-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,12 @@ jobs:
git log -1 $commit --format=%B | awk 'BEGIN{print "```"} /^$/{empty++} empty==2{exit} {print} END{print "```"}' >> /tmp/commit_message.txt
done
- name: Fetch PR body script from main
run: |
git fetch origin main:main
git checkout origin/main -- .github/scripts/create-pr-body.sh
chmod +x .github/scripts/create-pr-body.sh
- name: Create Pull Request
env:
GH_TOKEN: ${{ secrets.PRIVATE_REPO_ACCESS_TOKEN }}
Expand Down Expand Up @@ -514,7 +520,6 @@ jobs:
fi
# Create PR body using script
chmod +x .github/scripts/create-pr-body.sh
.github/scripts/create-pr-body.sh \
"${{ steps.build_info.outputs.build_time }}" \
"${{ steps.build_info.outputs.total_time }}" \
Expand Down