2019-08-04 09:34:59 +08:00
name : 'Close Stale Issues'
2019-11-09 00:47:32 +08:00
description : 'Close issues and pull requests with no recent activity'
2019-08-04 09:34:59 +08:00
author : 'GitHub'
inputs :
2019-08-07 04:25:08 +08:00
repo-token :
2020-04-14 17:43:56 +08:00
description : 'Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.'
2021-01-18 09:22:36 +08:00
required : false
2021-01-15 20:07:08 +08:00
default : ${{ github.token }}
2019-08-07 04:25:08 +08:00
stale-issue-message :
2019-08-20 02:34:16 +08:00
description : 'The message to post on the issue when tagging it. If none provided, will not mark issues stale.'
2021-01-16 21:28:29 +08:00
required : false
2019-08-07 04:25:08 +08:00
stale-pr-message :
2019-08-20 02:34:16 +08:00
description : 'The message to post on the pr when tagging it. If none provided, will not mark pull requests stale.'
2021-01-16 21:28:29 +08:00
required : false
2020-07-14 01:05:59 +08:00
close-issue-message :
description : 'The message to post on the issue when closing it. If none provided, will not comment when closing an issue.'
2021-01-16 21:28:29 +08:00
required : false
2020-07-14 01:05:59 +08:00
close-pr-message :
description : 'The message to post on the pr when closing it. If none provided, will not comment when closing a pull requests.'
2021-01-16 21:28:29 +08:00
required : false
2019-08-07 04:25:08 +08:00
days-before-stale :
2021-01-16 21:28:29 +08:00
description : 'The number of days old an issue or a pull request can be before marking it stale. Set to -1 to never mark issues or pull requests as stale automatically.'
required : false
default : '60'
days-before-issue-stale :
description : 'The number of days old an issue can be before marking it stale. Set to -1 to never mark issues as stale automatically. Override "days-before-stale" option regarding the issues only.'
required : false
days-before-pr-stale :
description : 'The number of days old a pull request can be before marking it stale. Set to -1 to never mark pull requests as stale automatically. Override "days-before-stale" option regarding the pull requests only.'
required : false
2019-08-07 04:25:08 +08:00
days-before-close :
2021-01-16 21:28:29 +08:00
description : 'The number of days to wait to close an issue or a pull request after it being marked stale. Set to -1 to never close stale issues or pull requests.'
required : false
default : '7'
days-before-issue-close :
description : 'The number of days to wait to close an issue after it being marked stale. Set to -1 to never close stale issues. Override "days-before-close" option regarding the issues only.'
required : false
days-before-pr-close :
description : 'The number of days to wait to close a pull request after it being marked stale. Set to -1 to never close stale pull requests. Override "days-before-close" option regarding the pull requests only.'
required : false
2019-08-07 04:25:08 +08:00
stale-issue-label :
2020-04-14 17:43:56 +08:00
description : 'The label to apply when an issue is stale.'
2021-01-16 21:28:29 +08:00
required : false
2019-08-07 04:25:08 +08:00
default : 'Stale'
2020-09-09 03:32:42 +08:00
close-issue-label :
description : 'The label to apply when an issue is closed.'
2021-01-16 21:28:29 +08:00
required : false
2020-04-16 09:33:09 +08:00
exempt-issue-labels :
2021-01-15 20:12:30 +08:00
description : 'The labels that mean an issue is exempt from being marked stale. Separate multiple labels with commas (eg. "label1,label2")'
2020-04-16 09:33:09 +08:00
default : ''
2021-01-16 21:28:29 +08:00
required : false
2019-08-07 04:25:08 +08:00
stale-pr-label :
2020-04-14 17:43:56 +08:00
description : 'The label to apply when a pull request is stale.'
2019-08-07 04:25:08 +08:00
default : 'Stale'
2021-01-16 21:28:29 +08:00
required : false
2020-09-09 03:32:42 +08:00
close-pr-label :
description : 'The label to apply when a pull request is closed.'
2021-01-16 21:28:29 +08:00
required : false
2020-04-16 09:33:09 +08:00
exempt-pr-labels :
2021-01-15 20:12:30 +08:00
description : 'The labels that mean a pull request is exempt from being marked stale. Separate multiple labels with commas (eg. "label1,label2")'
2020-04-16 09:33:09 +08:00
default : ''
2021-01-16 21:28:29 +08:00
required : false
2019-09-27 21:33:20 +08:00
only-labels :
2020-04-14 17:44:58 +08:00
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.'
2019-09-27 21:33:20 +08:00
default : ''
2021-01-16 21:28:29 +08:00
required : false
2019-08-07 04:25:08 +08:00
operations-per-run :
2021-01-18 09:22:36 +08:00
description : 'The maximum number of operations per run, used to control rate limiting (GitHub API CRUD related).'
2021-01-16 21:28:29 +08:00
default : '30'
required : false
2020-05-11 22:46:03 +08:00
remove-stale-when-updated :
description : 'Remove stale labels from issues when they are updated or commented on.'
2021-01-16 21:28:29 +08:00
default : 'true'
required : false
2020-04-17 01:57:59 +08:00
debug-only :
description : 'Run the processor in debug mode without actually performing any operations on live issues.'
2021-01-16 21:28:29 +08:00
default : 'false'
required : false
2020-06-24 01:55:24 +08:00
ascending :
description : 'The order to get issues or pull requests. Defaults to false, which is descending'
2021-01-16 21:28:29 +08:00
default : 'false'
required : false
2020-07-24 20:08:48 +08:00
skip-stale-pr-message :
description : 'Skip adding stale message when marking a pull request as stale.'
2021-01-16 21:28:29 +08:00
default : 'false'
required : false
2020-07-24 20:08:48 +08:00
skip-stale-issue-message :
description : 'Skip adding stale message when marking an issue as stale.'
2021-01-16 21:28:29 +08:00
default : 'false'
required : false
2021-01-15 19:49:38 +08:00
delete-branch :
description : 'Delete the git branch after closing a stale pull request.'
2021-01-16 21:28:29 +08:00
default : 'false'
required : false
2021-01-18 09:22:36 +08:00
start-date :
description : 'The date used to skip the stale action on issue/pr created before it (ISO 8601 or RFC 2822).'
default : ''
required : false
2019-08-04 09:34:59 +08:00
runs :
using : 'node12'
2020-04-15 02:02:29 +08:00
main : 'dist/index.js'