2019-08-06 16:25:08 -04:00
# Close Stale Issues and PRs
2019-08-03 21:34:59 -04:00
2019-08-06 16:25:08 -04:00
Warns and then closes issues and PRs that have had no activity for a specified amount of time.
2020-04-16 14:23:28 -04:00
### Building and testing
Install the dependencies
``` bash
$ npm install
```
Build the typescript and package it for distribution
``` bash
$ npm run build && npm run pack
```
Run the tests :heavy_check_mark:
``` bash
$ npm test
```
2019-08-06 16:25:08 -04:00
### Usage
See [action.yml ](./action.yml ) For comprehensive list of options.
2019-08-03 21:34:59 -04:00
2019-08-06 16:25:08 -04:00
Basic:
2019-11-27 16:04:40 +01:00
``` yaml
2019-08-06 16:25:08 -04:00
name : "Close stale issues"
on :
schedule :
2019-08-29 14:50:13 -04:00
- cron : "0 0 * * *"
2019-08-06 16:25:08 -04:00
jobs :
stale :
runs-on : ubuntu-latest
steps :
2020-05-11 10:54:55 -04:00
- uses : actions/stale@v3
2019-08-06 16:25:08 -04:00
with :
repo-token : ${{ secrets.GITHUB_TOKEN }}
stale-issue-message : 'Message to comment on stale issues. If none provided, will not mark issues stale'
stale-pr-message : 'Message to comment on stale PRs. If none provided, will not mark PRs stale'
```
Configure stale timeouts:
2019-11-27 16:04:40 +01:00
``` yaml
2019-08-06 16:25:08 -04:00
name : "Close stale issues"
on :
schedule :
2019-08-29 14:50:13 -04:00
- cron : "0 0 * * *"
2019-08-06 16:25:08 -04:00
jobs :
stale :
runs-on : ubuntu-latest
steps :
2020-05-11 10:54:55 -04:00
- uses : actions/stale@v3
2019-08-06 16:25:08 -04:00
with :
repo-token : ${{ secrets.GITHUB_TOKEN }}
stale-issue-message : 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
days-before-stale : 30
days-before-close : 5
```
2019-08-03 21:34:59 -04:00
2019-08-06 16:25:08 -04:00
Configure labels:
2019-11-27 16:04:40 +01:00
``` yaml
2019-08-03 21:34:59 -04:00
name : "Close stale issues"
on :
schedule :
2019-08-29 14:50:13 -04:00
- cron : "0 0 * * *"
2019-08-03 21:34:59 -04:00
jobs :
2019-08-06 16:25:08 -04:00
stale :
2019-08-03 21:34:59 -04:00
runs-on : ubuntu-latest
steps :
2020-05-11 10:54:55 -04:00
- uses : actions/stale@v3
2019-08-03 21:34:59 -04:00
with :
2019-08-06 16:25:08 -04:00
repo-token : ${{ secrets.GITHUB_TOKEN }}
stale-issue-message : 'Stale issue message'
2020-05-04 20:18:22 +03:00
stale-pr-message : 'Stale pull request message'
2019-08-06 16:25:08 -04:00
stale-issue-label : 'no-issue-activity'
2020-04-15 21:33:09 -04:00
exempt-issue-labels : 'awaiting-approval,work-in-progress'
2019-08-06 16:25:08 -04:00
stale-pr-label : 'no-pr-activity'
2020-04-15 21:33:09 -04:00
exempt-pr-labels : 'awaiting-approval,work-in-progress'
2019-08-03 21:34:59 -04:00
```
2020-04-16 13:57:59 -04:00
### Debugging
2020-05-11 10:54:55 -04:00
To see debug output from this action, you must set the secret `ACTIONS_STEP_DEBUG` to `true` in your repository. You can run this action in debug only mode (no actions will be taken on your issues) by passing `debug-only` `true` as an argument to the action.