Skip to content

Commit

Permalink
Update stale.yml to be more aggressive
Browse files Browse the repository at this point in the history
Changing the stalebot to tag issue as stale after 60 days of inactivity. In addition, it will now not ignore issues in Projects, but will ignore issues in milestones.
  • Loading branch information
caroline-suse-rancher authored Jan 19, 2024
1 parent a4986a5 commit e3b94c3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Configuration for probot-stale - https://github.com/probot/stale

# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 180
daysUntilStale: 45

# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
Expand Down Expand Up @@ -29,12 +29,16 @@ exemptLabels:
- priority/critical-urgent
- priority/important-longterm
- priority/important-soon
- priority/low
- priority/medium
- priority/high
- priority/urgent

# Set to true to ignore issues in a project (defaults to false)
exemptProjects: true
exemptProjects: false

# Set to true to ignore issues in a milestone (defaults to false)
exemptMilestones: false
exemptMilestones: true

# Set to true to ignore issues with an assignee (defaults to false)
exemptAssignees: true
Expand All @@ -45,7 +49,7 @@ staleLabel: status/stale
# Comment to post when marking as stale. Set to `false` to disable
markComment: >
This repository uses a bot to automatically label issues which have not had any activity (commit/comment/label)
for 180 days. This helps us manage the community issues better. If the issue is still relevant, please add a comment to the
for 60 days. This helps us manage the community issues better. If the issue is still relevant, please add a comment to the
issue so the bot can remove the label and we know it is still valid. If it is no longer relevant (or possibly fixed in the
latest release), the bot will automatically close the issue in 14 days. Thank you for your contributions.
Expand Down

0 comments on commit e3b94c3

Please sign in to comment.