From a61ee0b3ef25568f2ad72acbc54d7f6741457409 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Sat, 16 Dec 2017 06:33:18 +0100
Subject: [PATCH] refactor: log info message when do not have branch protection
 permissions

---
 lib/platform/github/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index f4a16b1c66..390d9ea09a 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -186,7 +186,7 @@ async function getRepoForceRebase() {
       if (err.statusCode === 404) {
         logger.info(`No branch protection found`);
       } else if (err.statusCode === 403) {
-        logger.warn(
+        logger.info(
           'Branch protection: Do not have permissions to detect branch protection'
         );
       } else {
-- 
GitLab