From 24d23dfc11f82e714d351f126587edd642d1299c Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@keylocation.sg>
Date: Thu, 5 Jan 2017 07:10:43 +0100
Subject: [PATCH] Add description to Pull Request

Closes #15
---
 src/index.js | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/index.js b/src/index.js
index 6ebf41b201..374ca1f9c2 100644
--- a/src/index.js
+++ b/src/index.js
@@ -86,17 +86,18 @@ function updateDependency(depType, depName, currentVersion, nextVersion) {
         if (res.body.length > 0) {
           console.log(`Dependency ${depName} upgrade to ${nextVersionMajor}.x PR already existed, so skipping`);
         } else {
-          writeUpdates(depType, depName, branchName, prName, nextVersion);
+          writeUpdates(depType, depName, branchName, prName, currentVersion, nextVersion);
         }
       });
   } else {
     prName = `Upgrade dependency ${depName} to version ${nextVersion}`;
-    writeUpdates(depType, depName, branchName, prName, nextVersion);
+    writeUpdates(depType, depName, branchName, prName, currentVersion, nextVersion);
   }
 }
 
-function writeUpdates(depType, depName, branchName, prName, nextVersion) {
+function writeUpdates(depType, depName, branchName, prName, currentVersion, nextVersion) {
   const commitMessage = `Upgrade dependency ${depName} to version ${nextVersion}`;
+  const prBody = `This Pull Request updates dependency ${depName} from version ${currentVersion} to ${nextVersion}.`;
   // Try to create branch
   const body = {
     ref: `refs/heads/${branchName}`,
@@ -130,7 +131,7 @@ function writeUpdates(depType, depName, branchName, prName, nextVersion) {
             content: new Buffer(branchPackageString).toString('base64')
           }
         }).then(res => {
-          return createOrUpdatePullRequest(branchName, prName);
+          return createOrUpdatePullRequest(branchName, prName, prBody);
         });
       }
     });
@@ -140,14 +141,14 @@ function writeUpdates(depType, depName, branchName, prName, nextVersion) {
   });
 }
 
-function createOrUpdatePullRequest(branchName, title) {
+function createOrUpdatePullRequest(branchName, title, body) {
   return ghGot.post(`repos/${repoName}/pulls`, {
     token: token,
     body: {
       title: title,
       head: branchName,
       base: 'master',
-      body: ''
+      body: body,
     }
   }).then(res => {
     console.log('Created Pull Request: ' + title);
@@ -167,7 +168,8 @@ function createOrUpdatePullRequest(branchName, title) {
         return ghGot.patch(`repos/${repoName}/pulls/${existingPrNo}`, {
           token: token,
           body: {
-            title: title
+            title: title,
+            body: body,
           }
         }).then(res => {
           console.log('Updated Pull Request: ' + title);
-- 
GitLab