We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6466ce + 1bc3d28 commit 785308cCopy full SHA for 785308c
.github/workflows/ci.yml
@@ -231,6 +231,9 @@ jobs:
231
exit ${exitcode}
232
fi
233
234
+ # Store merge commit message
235
+ git log -1 --pretty=%B > message.txt
236
+
237
# Format changes
238
./miri toolchain
239
./miri fmt --check || (./miri fmt && git commit -am "fmt")
@@ -239,7 +242,7 @@ jobs:
242
BRANCH="rustup-$(date -u +%Y-%m-%d)"
240
243
git switch -c $BRANCH
241
244
git push -u origin $BRANCH
- 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
246
env:
247
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
248
0 commit comments