Marks issues and pull requests that have not had recent interaction
Перейти к файлу
dependabot[bot] 1849651e2a
Bump @actions/core from 1.2.4 to 1.2.5 (#154)
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.4 to 1.2.5.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-09-11 09:20:39 -04:00
.github Turn off licensing check 2020-08-28 06:33:32 -04:00
.licenses/npm Add `Licensed` To Help Verify Prod Licenses (#138) 2020-08-28 06:22:51 -04:00
.vscode Remove stale labels and ignore stale issues with comments (#58) 2020-05-11 10:46:03 -04:00
__tests__ Add support for adding close label (#135) 2020-09-08 15:32:42 -04:00
dist Add updated dist file 2020-09-11 08:24:59 -04:00
docs Reflect updated workflow 2019-08-06 18:12:22 -04:00
src Add support for adding close label (#135) 2020-09-08 15:32:42 -04:00
.eslintignore Cleanup release (#42) 2020-04-14 13:28:00 -04:00
.eslintrc.json Update eslint config to latest (#123) 2020-07-24 08:17:50 -04:00
.gitattributes Add `Licensed` To Help Verify Prod Licenses (#138) 2020-08-28 06:22:51 -04:00
.gitignore Cleanup release (#42) 2020-04-14 13:28:00 -04:00
.licensed.yml Add `Licensed` To Help Verify Prod Licenses (#138) 2020-08-28 06:22:51 -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 the only-labels option in the readme (#141) 2020-08-21 07:18:40 -04:00
action.yml Add support for adding close label (#135) 2020-09-08 15:32:42 -04:00
jest.config.js Initial import 2019-08-03 21:34:59 -04:00
package-lock.json Bump @actions/core from 1.2.4 to 1.2.5 (#154) 2020-09-11 09:20:39 -04:00
package.json Bump @actions/core from 1.2.4 to 1.2.5 (#154) 2020-09-11 09:20:39 -04:00
tsconfig.json Remove stale labels and ignore stale issues with comments (#58) 2020-05-11 10:46:03 -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.

Building and testing

Install the dependencies

$ npm install

Build the typescript and package it for distribution

$ npm run build && npm run pack

Run the tests ✔️

$ npm test

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@v3
      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@v3
      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@v3
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        stale-issue-message: 'Stale issue message'
        stale-pr-message: 'Stale pull request 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'
        only-labels: 'awaiting-feedback,awaiting-answers'

Debugging

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.