Go to file
Danny McCormick dc7133054e Add most recent action 2019-08-06 16:25:08 -04:00
.github/workflows Add most recent action 2019-08-06 16:25:08 -04:00
__tests__ Initial import 2019-08-03 21:34:59 -04:00
docs Initial import 2019-08-03 21:34:59 -04:00
lib Add most recent action 2019-08-06 16:25:08 -04:00
node_modules Add most recent action 2019-08-06 16:25:08 -04:00
src Add most recent action 2019-08-06 16:25:08 -04:00
toolkit Add most recent action 2019-08-06 16:25:08 -04:00
.gitignore Initial import 2019-08-03 21:34:59 -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 Add most recent action 2019-08-06 16:25:08 -04:00
action.yml Add most recent action 2019-08-06 16:25:08 -04:00
jest.config.js Initial import 2019-08-03 21:34:59 -04:00
package-lock.json Add most recent action 2019-08-06 16:25:08 -04:00
package.json Initial import 2019-08-03 21:34:59 -04:00
tsconfig.json Initial import 2019-08-03 21:34:59 -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:
  push: {}
  schedule:
  - cron: 0 * * * *

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: bbq-beets/stale-bot@master
      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:
  push: {}
  schedule:
  - cron: 0 * * * *

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: bbq-beets/stale-bot@master
      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:
  push: {}
  schedule:
  - cron: 0 * * * *

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: bbq-beets/stale-bot@master
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        stale-issue-message: 'Stale issue message'
        stale-pr-message: 'Stale issue message'
        stale-issue-label: 'no-issue-activity'
        stale-pr-label: 'no-pr-activity'