mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
refactor(github): don’t try/catch getAllRenovateBranches
This commit is contained in:
parent
d336f35ebb
commit
ba12183626
1 changed files with 24 additions and 28 deletions
|
@ -404,7 +404,6 @@ async function branchExists(branchName) {
|
||||||
|
|
||||||
async function getAllRenovateBranches(branchPrefix) {
|
async function getAllRenovateBranches(branchPrefix) {
|
||||||
logger.trace('getAllRenovateBranches');
|
logger.trace('getAllRenovateBranches');
|
||||||
try {
|
|
||||||
const allBranches = (await get(
|
const allBranches = (await get(
|
||||||
`repos/${config.repository}/git/refs/heads/${branchPrefix}`,
|
`repos/${config.repository}/git/refs/heads/${branchPrefix}`,
|
||||||
{
|
{
|
||||||
|
@ -429,9 +428,6 @@ async function getAllRenovateBranches(branchPrefix) {
|
||||||
}
|
}
|
||||||
return arr;
|
return arr;
|
||||||
}, []);
|
}, []);
|
||||||
} catch (err) /* istanbul ignore next */ {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function isBranchStale(branchName) {
|
async function isBranchStale(branchName) {
|
||||||
|
|
Loading…
Reference in a new issue