Pack for distribution
This commit is contained in:
parent
f11770a586
commit
d7719d70c7
|
@ -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)) {
|
||||||
|
|
|
@ -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 &&
|
||||||
|
|
Loading…
Reference in New Issue