minor fix (#487)
This commit is contained in:
parent
8e70fa8dee
commit
965862c5a6
|
@ -1849,7 +1849,7 @@ function _run() {
|
||||||
const args = _getAndValidateArgs();
|
const args = _getAndValidateArgs();
|
||||||
const issueProcessor = new issues_processor_1.IssuesProcessor(args);
|
const issueProcessor = new issues_processor_1.IssuesProcessor(args);
|
||||||
yield issueProcessor.processIssues();
|
yield issueProcessor.processIssues();
|
||||||
yield processOutput(issueProcessor.closedIssues, issueProcessor.staleIssues);
|
yield processOutput(issueProcessor.staleIssues, issueProcessor.closedIssues);
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
core.error(error);
|
core.error(error);
|
||||||
|
|
|
@ -12,8 +12,8 @@ async function _run(): Promise<void> {
|
||||||
await issueProcessor.processIssues();
|
await issueProcessor.processIssues();
|
||||||
|
|
||||||
await processOutput(
|
await processOutput(
|
||||||
issueProcessor.closedIssues,
|
issueProcessor.staleIssues,
|
||||||
issueProcessor.staleIssues
|
issueProcessor.closedIssues
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.error(error);
|
core.error(error);
|
||||||
|
|
Loading…
Reference in New Issue