github.com/minio/minio@v0.0.0-20240328213742-3f72439b8a27/.github/stale.yml (about) 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 4 daysUntilStale: 30 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. 8 daysUntilClose: 15 9 10 # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) 11 onlyLabels: [] 12 13 # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable 14 exemptLabels: 15 - "security" 16 - "pending discussion" 17 - "do-not-close" 18 19 # Set to true to ignore issues in a project (defaults to false) 20 exemptProjects: false 21 22 # Set to true to ignore issues in a milestone (defaults to false) 23 exemptMilestones: false 24 25 # Set to true to ignore issues with an assignee (defaults to false) 26 exemptAssignees: false 27 28 # Label to use when marking as stale 29 staleLabel: stale 30 31 # Comment to post when marking as stale. Set to `false` to disable 32 markComment: >- 33 This issue has been automatically marked as stale because it has not had 34 recent activity. It will be closed after 15 days if no further activity 35 occurs. Thank you for your contributions. 36 # Comment to post when removing the stale label. 37 # unmarkComment: > 38 # Your comment here. 39 40 # Comment to post when closing a stale Issue or Pull Request. 41 # closeComment: > 42 # Your comment here. 43 44 # Limit the number of actions per hour, from 1-30. Default is 30 45 limitPerRun: 1 46 47 # Limit to only `issues` or `pulls` 48 # only: issues 49 50 # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': 51 # pulls: 52 # daysUntilStale: 30 53 # markComment: > 54 # This pull request has been automatically marked as stale because it has not had 55 # recent activity. It will be closed if no further activity occurs. Thank you 56 # for your contributions. 57 58 # issues: 59 # exemptLabels: 60 # - confirmed