Skip to content

Commit

Permalink
Tame down stale bot (#344)
Browse files Browse the repository at this point in the history
- Bump from 30 to 90 days
- Add "confirmed" label to keep issue from being marked stale
- Prevent issues being marked stale if they're in projects, milestones,
  or are assigned
  • Loading branch information
kadler authored Jul 5, 2023
1 parent 02caccd commit 6ce98c6
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 30
daysUntilStale: 90
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 14

# Label
staleLabel: 'stale'
exemptLabels:
- confirmed

# Don't mark issues in projects, milestones, or that are assigned as stale
exemptProjects: true
exemptMilestones: true
exemptAssignees: true

# Comment to post when marking an issue as stale. Set to `false` to disable
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.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
closeComment: false

0 comments on commit 6ce98c6

Please sign in to comment.