From 8a40ac3c758cd51b35f19280b41e65b6576f4f50 Mon Sep 17 00:00:00 2001
From: Cole Helbling <cole.helbling@determinate.systems>
Date: Tue, 19 Oct 2021 09:29:17 -0700
Subject: [PATCH] Add commit message to PR body

---
 action.yml | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/action.yml b/action.yml
index c0a463c..eff6930 100644
--- a/action.yml
+++ b/action.yml
@@ -15,10 +15,23 @@ runs:
         GIT_AUTHOR_EMAIL: <github-actions[bot]@users.noreply.github.com>
         GIT_COMMITTER_NAME: github-actions[bot]
         GIT_COMMITTER_EMAIL: <github-actions[bot]@users.noreply.github.com>
+    - run: |
+        content="$(git log --format=%b -n 1)"
+        content="${content//'%'/'%25'}"
+        content="${content//$'\n'/'%0A'}"
+        content="${content//$'\r'/'%0D'}"
+        echo "::set-output name=msg::$content"
+      shell: bash
+      id: commit_message
     - name: Create PR
       uses: peter-evans/create-pull-request@v3
       with:
         branch: update_flake_lock_action
         delete-branch: true
         title: "flake.lock: Update"
-        body: Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
+        body: |
+          Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
+
+          ```
+          ${{ steps.commit_message.outputs.msg }}
+          ```