Skip to content

Commit

Permalink
Create stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr authored Feb 28, 2020
1 parent 26b8fe0 commit 40c0a8b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: '*/15 * * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
This issue has been automatically marked as stale because it has not
had recent activity. It will be closed if no further activity occurs.
Please let us know if this issue is still valid!
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs.
Please let us know if this PR is still need merging!
stale-issue-label: 'stale'
exempt-issue-label: 'Kills Kittens (=^-^=)'
stale-pr-label: 'stale'
exempt-pr-label: 'Kills Kittens (=^-^=)'
days-before-stale: 365
days-before-close: 90

0 comments on commit 40c0a8b

Please sign in to comment.