Skip to content
Snippets Groups Projects
Commit 4cfcee7b authored by Rhys Arkins's avatar Rhys Arkins
Browse files

chore: info not warn for unsupported bazel remote

parent 4ec85ad8
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ async function getPackageUpdates(config) { ...@@ -36,7 +36,7 @@ async function getPackageUpdates(config) {
const { remote, currentVersion } = config; const { remote, currentVersion } = config;
const githubHost = 'https://github.com/'; const githubHost = 'https://github.com/';
if (!remote.startsWith(githubHost)) { if (!remote.startsWith(githubHost)) {
logger.warn({ remote }, 'Unsupported bazel remote'); logger.info({ remote }, 'Unsupported bazel remote');
return []; return [];
} }
if (!semver.valid(currentVersion)) { if (!semver.valid(currentVersion)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment