Browse Source

Create stale.yml

pull/520/head
Tim Kimber 6 years ago
committed by GitHub
parent
commit
26f224bd3c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions
  1. +17
    -0
      .github/workflows/stale.yml

+ 17
- 0
.github/workflows/stale.yml View File

@ -0,0 +1,17 @@
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue will be closed as no response'
stale-issue-label: 'needs more information'
exempt-issue-label: 'enhancement'
days-before-stale: 60
days-before-close: 30

Loading…
Cancel
Save