mirror of
https://github.com/actions/stale.git
synced 2025-12-11 12:37:27 +00:00
Resolve conflicts
This commit is contained in:
3
dist/index.js
vendored
3
dist/index.js
vendored
@@ -671,8 +671,7 @@ class IssuesProcessor {
|
|||||||
return issueResult.data.map((issue) => new issue_1.Issue(this.options, issue));
|
return issueResult.data.map((issue) => new issue_1.Issue(this.options, issue));
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
const rethrow = Error(`Getting issues was blocked by the error: ${error.message}`);
|
throw Error(`Getting issues was blocked by the error: ${error.message}`);
|
||||||
throw error;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -557,10 +557,7 @@ export class IssuesProcessor {
|
|||||||
(issue: Readonly<OctokitIssue>): Issue => new Issue(this.options, issue)
|
(issue: Readonly<OctokitIssue>): Issue => new Issue(this.options, issue)
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
const rethrow = Error(
|
throw Error(`Getting issues was blocked by the error: ${error.message}`);
|
||||||
`Getting issues was blocked by the error: ${error.message}`
|
|
||||||
);
|
|
||||||
throw error;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user