Browse Source

Create stale2.yml

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

+ 20
- 0
.github/workflows/stale2.yml View File

@ -0,0 +1,20 @@
name: Mark stale issues and pull requests
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