Skip to content

Commit

Permalink
feat(tools): add stale config
Browse files Browse the repository at this point in the history
this adds a [stale](https://probot.github.io/apps/stale/) config to automatically ping on issues
that are open for more than 60 days and close them 30 days after that. this should help us clean up
old issues automatically.
  • Loading branch information
f2prateek committed Apr 5, 2019
1 parent e611f62 commit 16a8b20
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
daysUntilStale: 60
daysUntilClose: 30
# Issues with these labels will never be considered stale.
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale.
staleLabel: stale
# Comment to post when marking an issue as stale.
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.

0 comments on commit 16a8b20

Please sign in to comment.