Pack for distribution

This commit is contained in:
Ross Brodbeck 2020-04-15 08:44:55 -04:00
parent f11770a586
commit d7719d70c7
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -8490,7 +8490,7 @@ class IssueProcessor {
core.debug(`Skipping ${issueType} because it has an exempt label`); core.debug(`Skipping ${issueType} because it has an exempt label`);
continue; // don't process exempt issues continue; // don't process exempt issues
} }
if (!IssueProcessor.isLabeled(issue, staleLabel)) { if (IssueProcessor.isLabeled(issue, staleLabel)) {
core.debug(`Found a stale ${issueType}`); core.debug(`Found a stale ${issueType}`);
if (this.options.daysBeforeClose >= 0 && if (this.options.daysBeforeClose >= 0 &&
IssueProcessor.wasLastUpdatedBefore(issue, this.options.daysBeforeClose)) { IssueProcessor.wasLastUpdatedBefore(issue, this.options.daysBeforeClose)) {

View File

@ -84,7 +84,7 @@ export class IssueProcessor {
continue; // don't process exempt issues continue; // don't process exempt issues
} }
if (!IssueProcessor.isLabeled(issue, staleLabel)) { if (IssueProcessor.isLabeled(issue, staleLabel)) {
core.debug(`Found a stale ${issueType}`); core.debug(`Found a stale ${issueType}`);
if ( if (
this.options.daysBeforeClose >= 0 && this.options.daysBeforeClose >= 0 &&