File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/tools/miri/.github/workflows Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -231,6 +231,9 @@ jobs:
231231 exit ${exitcode}
232232 fi
233233
234+ # Store merge commit message
235+ git log -1 --pretty=%B > message.txt
236+
234237 # Format changes
235238 ./miri toolchain
236239 ./miri fmt --check || (./miri fmt && git commit -am "fmt")
@@ -239,7 +242,7 @@ jobs:
239242 BRANCH="rustup-$(date -u +%Y-%m-%d)"
240243 git switch -c $BRANCH
241244 git push -u origin $BRANCH
242- gh pr create -B master --title 'Automatic Rustup' --body "Update \`rustc\` to https://github.com/rust-lang/rust/commit/$(cat rust-version)."
245+ gh pr create -B master --title 'Automatic Rustup' --body-file message.txt
243246 env :
244247 GITHUB_TOKEN : ${{ steps.app-token.outputs.token }}
245248
You can’t perform that action at this time.
0 commit comments