Skip to content

Commit

Permalink
Add stale github action (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaicolBen authored Apr 20, 2020
1 parent 7b89828 commit 2b6fbc4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
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
stale-pr-label: 'stale'
stale-issue-label: 'stale'

0 comments on commit 2b6fbc4

Please sign in to comment.