Skip to content

Commit

Permalink
chore: Add stale GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapsssito authored Feb 27, 2020
1 parent 2421c4f commit 5d6e471
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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: 'Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community attention? This issue may be closed if no further activity occurs.'
stale-issue-label: 'stale'
days-before-stale: 30
days-before-close: 5

0 comments on commit 5d6e471

Please sign in to comment.