Go to file
Ross Brodbeck aad6ffa865
Refactor issue processor (#45)
* Refctor into an issue processor, add debug mode
* Move processor to use its own types so testing is easier
* Add more tests
2020-04-16 13:57:59 -04:00
__tests__ Refactor issue processor (#45) 2020-04-16 13:57:59 -04:00
dist Refactor issue processor (#45) 2020-04-16 13:57:59 -04:00
docs Reflect updated workflow 2019-08-06 18:12:22 -04:00
src Refactor issue processor (#45) 2020-04-16 13:57:59 -04:00
.eslintignore Cleanup release (#42) 2020-04-14 13:28:00 -04:00
.eslintrc.json Refactor issue processor (#45) 2020-04-16 13:57:59 -04:00
.gitignore Cleanup release (#42) 2020-04-14 13:28:00 -04:00
.prettierrc.json Initial import 2019-08-03 21:34:59 -04:00
LICENSE Initial import 2019-08-03 21:34:59 -04:00
README.md Refactor issue processor (#45) 2020-04-16 13:57:59 -04:00
action.yml Refactor issue processor (#45) 2020-04-16 13:57:59 -04:00
jest.config.js Initial import 2019-08-03 21:34:59 -04:00
package-lock.json Cleanup release (#42) 2020-04-14 13:28:00 -04:00
package.json Cleanup release (#42) 2020-04-14 13:28:00 -04:00
tsconfig.json Cleanup release (#42) 2020-04-14 13:28:00 -04:00

README.md

Close Stale Issues and PRs

Warns and then closes issues and PRs that have had no activity for a specified amount of time.

Usage

See action.yml For comprehensive list of options.

Basic:

name: "Close stale issues"
on:
  schedule:
  - cron: "0 0 * * *"

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/stale@v1.1.0
      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:

name: "Close stale issues"
on:
  schedule:
  - cron: "0 0 * * *"

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/stale@v1.1.0
      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

Configure labels:

name: "Close stale issues"
on:
  schedule:
  - cron: "0 0 * * *"

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/stale@v1.1.0
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        stale-issue-message: 'Stale issue message'
        stale-pr-message: 'Stale issue message'
        stale-issue-label: 'no-issue-activity'
        exempt-issue-labels: 'awaiting-approval,work-in-progress'
        stale-pr-label: 'no-pr-activity'
        exempt-pr-labels: 'awaiting-approval,work-in-progress'

Debugging

To see debug ouput 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.