You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@ Every argument is optional.
63
63
| [remove-issue-stale-when-updated](#remove-issue-stale-when-updated) | Remove stale label from issues on updates/comments | |
64
64
| [remove-pr-stale-when-updated](#remove-pr-stale-when-updated) | Remove stale label from PRs on updates/comments | |
65
65
| [labels-to-add-when-unstale](#labels-to-add-when-unstale) | Add specified labels from issues/PRs when they become unstale | |
66
+
| [labels-to-remove-when-stale](#labels-to-remove-when-stale) | Remove specified labels from issues/PRs when they become stale | |
66
67
| [labels-to-remove-when-unstale](#labels-to-remove-when-unstale) | Remove specified labels from issues/PRs when they become unstale | |
67
68
| [debug-only](#debug-only) | Dry-run | `false` |
68
69
| [ascending](#ascending) | Order to get issues/PRs | `false` |
@@ -358,6 +359,15 @@ A comma delimited list of labels to add when a stale issue or pull request recei
358
359
359
360
Default value: unset
360
361
362
+
#### labels-to-remove-when-stale
363
+
364
+
A comma delimited list of labels to remove when an issue or pull request becomes stale and has the [stale-issue-label](#stale-issue-label) or [stale-pr-label](#stale-pr-label) added to it.
365
+
366
+
Warning: each label results in a unique API call which can drastically consume the limit of [operations-per-run](#operations-per-run).
367
+
368
+
Default value: unset
369
+
Required Permission: `pull-requests: write`
370
+
361
371
#### labels-to-remove-when-unstale
362
372
363
373
A comma delimited list of labels to remove when a stale issue or pull request receives activity and has the [stale-issue-label](#stale-issue-label) or [stale-pr-label](#stale-pr-label) removed from it.
Copy file name to clipboardExpand all lines: action.yml
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -177,11 +177,15 @@ inputs:
177
177
default: 'true'
178
178
required: false
179
179
labels-to-add-when-unstale:
180
-
description: 'A comma delimited list of labels to add when a stale issue or pull request receives activity and has the stale-issue-label or stale-pr-label removed from it.'
180
+
description: 'A comma delimited list of labels to add when an issue or pull request becomes unstale.'
181
+
default: ''
182
+
required: false
183
+
labels-to-remove-when-stale:
184
+
description: 'A comma delimited list of labels to remove when an issue or pull request becomes stale.'
181
185
default: ''
182
186
required: false
183
187
labels-to-remove-when-unstale:
184
-
description: 'A comma delimited list of labels to remove when a stale issue or pull request receives activity and has the stale-issue-label or stale-pr-label removed from it.'
188
+
description: 'A comma delimited list of labels to remove when an issue or pull request becomes unstale.'
0 commit comments