We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19849a0 commit 79a775bCopy full SHA for 79a775b
.github/workflows/cherry-pick.yml
@@ -142,13 +142,16 @@ jobs:
142
NEW_TITLE="[Cherry-Pick] $PR_TITLE($PR_NUMBER)"
143
fi
144
145
- NEW_BODY="Cherry-pick of #$PR_NUMBER (authored by @${PR_AUTHOR}) to \`$TARGET_BRANCH\`.
+ NEW_BODY=$(cat <<EOF
146
+Cherry-pick of #$PR_NUMBER (authored by @${PR_AUTHOR}) to \`$TARGET_BRANCH\`.
147
- devPR:https://github.com/PaddlePaddle/FastDeploy/pull/$PR_NUMBER <!-- For pass CI -->
148
+devPR:https://github.com/PaddlePaddle/FastDeploy/pull/$PR_NUMBER <!-- For pass CI -->
149
- ---
150
+---
151
- $PR_BODY"
152
+$PR_BODY
153
+EOF
154
+)
155
156
# Prepare head ref for PR creation (owner:branch)
157
HEAD_REF="${BOT_USERNAME}:${NEW_BRANCH}"
0 commit comments