mirror of
https://github.com/actions/stale.git
synced 2025-12-25 01:48:17 +00:00
Compare commits
9 Commits
v5.2.0
...
issue-596/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
543406b451 | ||
|
|
c9c0453c5e | ||
|
|
c750aa3ff8 | ||
|
|
e200968421 | ||
|
|
8d5a27d5ec | ||
|
|
867763412b | ||
|
|
13f3458051 | ||
|
|
e878daaea6 | ||
|
|
a1c9a63a3d |
@@ -82,7 +82,7 @@ Every argument is optional.
|
||||
| [ignore-updates](#ignore-updates) | Any update (update/comment) can reset the stale idle time on the issues/PRs | `false` |
|
||||
| [ignore-issue-updates](#ignore-issue-updates) | Override [ignore-updates](#ignore-updates) for issues only | |
|
||||
| [ignore-pr-updates](#ignore-pr-updates) | Override [ignore-updates](#ignore-updates) for PRs only | |
|
||||
| [include-only-assigned](#include-only-assigned) | Process only assigned issues | `false` |
|
||||
| [include-only-assigned](#include-only-assigned) | Process only assigned issues | `false` |
|
||||
|
||||
### List of output options
|
||||
|
||||
|
||||
4
dist/index.js
vendored
4
dist/index.js
vendored
@@ -477,9 +477,9 @@ class IssuesProcessor {
|
||||
return; // Don't process locked issues
|
||||
}
|
||||
if (this._isIncludeOnlyAssigned(issue)) {
|
||||
issueLogger.info(`Skipping this $$type because its assignees list is empty`);
|
||||
issueLogger.info(`Skipping this $$type because it's assignees list is empty`);
|
||||
IssuesProcessor._endIssueProcessing(issue);
|
||||
return; // If the issue has an 'include-only-assigned' option set, process only issues with nonempty assignees list
|
||||
return; // If the issue has an 'includeOnlyAssigned' option, process only issues with nonempty assignees list
|
||||
}
|
||||
const onlyLabels = words_to_list_1.wordsToList(this._getOnlyLabels(issue));
|
||||
if (onlyLabels.length > 0) {
|
||||
|
||||
@@ -223,10 +223,10 @@ export class IssuesProcessor {
|
||||
|
||||
if (this._isIncludeOnlyAssigned(issue)) {
|
||||
issueLogger.info(
|
||||
`Skipping this $$type because its assignees list is empty`
|
||||
`Skipping this $$type because it's assignees list is empty`
|
||||
);
|
||||
IssuesProcessor._endIssueProcessing(issue);
|
||||
return; // If the issue has an 'include-only-assigned' option set, process only issues with nonempty assignees list
|
||||
return; // If the issue has an 'include-only-assigned' option, process only issues with nonempty assignees list
|
||||
}
|
||||
|
||||
const onlyLabels: string[] = wordsToList(this._getOnlyLabels(issue));
|
||||
|
||||
Reference in New Issue
Block a user