1# Number of days of inactivity before an issue becomes stale 2daysUntilStale: 365 3# Number of days of inactivity before a stale issue is closed 4daysUntilClose: 90 5# Limit to only `issues` or `pulls` 6only: issues 7# Issues with these labels will never be considered stale 8exemptLabels: 9 - "Type: Feature" 10 - "Bot: Not Stale" 11 - "Status: Work in Progress" 12# Set to true to ignore issues in a project (defaults to false) 13exemptProjects: true 14# Set to true to ignore issues in a milestone (defaults to false) 15exemptMilestones: true 16# Set to true to ignore issues with an assignee (defaults to false) 17exemptAssignees: true 18# Label to use when marking an issue as stale 19staleLabel: "Status: Stale" 20# Comment to post when marking an issue as stale. Set to `false` to disable 21markComment: > 22 This issue has been automatically marked as "stale" because it has not had 23 any activity for a while. It will be closed in 90 days if no further activity occurs. 24 Thank you for your contributions. 25# Limit the number of actions per hour, from 1-30. Default is 30 26limitPerRun: 6 27