1# Configuration for probot-stale - https://github.com/probot/stale 2 3# Number of days of inactivity before an Issue or Pull Request becomes stale 4daysUntilStale: 60 5 6# Number of days of inactivity before an Issue or Pull Request with the stale label is closed. 7# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. 8daysUntilClose: 7 9 10# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 11exemptLabels: 12 - Do Not Merge 13 - blocked 14 - pinned 15 - security 16 - "[Status] Maybe Later" 17 18# Set to true to ignore issues in a project (defaults to false) 19exemptProjects: false 20 21# Set to true to ignore issues in a milestone (defaults to false) 22exemptMilestones: false 23 24# Label to use when marking as stale 25staleLabel: wontfix 26 27# Comment to post when marking as stale. Set to `false` to disable 28markComment: > 29 This issue has been automatically marked as stale because it has not had 30 recent activity. It will be closed in 7 days if no further activity occurs. 31 Thank you for your contributions. 32 33# Comment to post when removing the stale label. 34unmarkComment: > 35 This issue is no longer stale. 36 Thank you for your contributions. 37 38# Comment to post when closing a stale Issue or Pull Request. 39closeComment: > 40 This issue has been automatically closed due to inactivity. 41 Thank you for your contributions. 42 43# Limit the number of actions per hour, from 1-30. Default is 30 44limitPerRun: 30 45 46# Limit to only `issues` or `pulls` 47# only: issues 48 49# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': 50# pulls: 51# daysUntilStale: 30 52# markComment: > 53# This pull request has been automatically marked as stale because it has not had 54# recent activity. It will be closed if no further activity occurs. Thank you 55# for your contributions. 56 57# issues: 58# exemptLabels: 59# - confirmed 60