mirror of
https://github.com/actions/stale.git
synced 2025-12-10 03:57:04 +00:00
Allow multiple exempt labels (#19)
* Update description to clarify exempt labels * [breaking change] Use array for exempt labels * Switch to a comma separated string for exempt labels * Update descriptions for multiple labels * Update examples for exempt labels * lint: apply fixes * Re-generate transpiled output
This commit is contained in:
committed by
GitHub
parent
e78f171ed1
commit
6127f8ef7a
10
action.yml
10
action.yml
@@ -18,13 +18,15 @@ inputs:
|
||||
stale-issue-label:
|
||||
description: 'The label to apply when an issue is stale.'
|
||||
default: 'Stale'
|
||||
exempt-issue-label:
|
||||
description: 'The label to apply when an issue is exempt from being marked stale.'
|
||||
exempt-issue-labels:
|
||||
description: 'The labels to apply when an issue is exempt from being marked stale. Separate multiple labels with commas (eg. "label1,label2")'
|
||||
default: ''
|
||||
stale-pr-label:
|
||||
description: 'The label to apply when a pull request is stale.'
|
||||
default: 'Stale'
|
||||
exempt-pr-label:
|
||||
description: 'The label to apply when a pull request is exempt from being marked stale.'
|
||||
exempt-pr-labels:
|
||||
description: 'The labels to apply when a pull request is exempt from being marked stale. Separate multiple labels with commas (eg. "label1,label2")''
|
||||
default: ''
|
||||
only-labels:
|
||||
description: 'Only issues or pull requests with all of these labels are checked if stale. Defaults to `[]` (disabled) and can be a comma-separated list of labels.'
|
||||
default: ''
|
||||
|
||||
Reference in New Issue
Block a user