From 861cce0123b635adcdda8a87fe293ece3e57dec8 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Mon, 17 Dec 2018 12:43:15 +0100 Subject: [PATCH] feat: detect/print renovate version --- lib/platform/github/index.js | 1 + lib/workers/global/index.js | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js index d550dac876..e7db43c946 100644 --- a/lib/platform/github/index.js +++ b/lib/platform/github/index.js @@ -100,6 +100,7 @@ async function initRepo({ localDir, }) { logger.debug(`initRepo("${repository}")`); + logger.info('Using renovate version: ' + global.renovateVersion); const opts = hostRules.find({ platform: 'github' }, { token, endpoint }); if (!opts.token) { throw new Error(`No token found for GitHub repository ${repository}`); diff --git a/lib/workers/global/index.js b/lib/workers/global/index.js index 82821326ad..093a89542f 100644 --- a/lib/workers/global/index.js +++ b/lib/workers/global/index.js @@ -45,6 +45,7 @@ async function start() { config.global[key] = config[key]; delete config[key]; }); + detectRenovateVersion(); // Iterate through repositories sequentially for (const repository of config.repositories) { const repoConfig = getRepositoryConfig(config, repository); @@ -57,6 +58,15 @@ async function start() { } } +// istanbul ignore next +function detectRenovateVersion() { + try { + global.renovateVersion = require('../../../package.json').version; // eslint-disable-line global-require + } catch (err) { + logger.debug({ err }, 'Error getting renovate version'); + } +} + function getRepositoryConfig(globalConfig, repository) { const repoConfig = configParser.mergeChildConfig( globalConfig, -- GitLab