|
| 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: 76 |
| 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: 14 |
| 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 | + - "Priority: P0" |
| 16 | + - "Priority: P1" |
| 17 | + - "Priority: P2" |
| 18 | + - "Progress: dev in progress" |
| 19 | + - "Progress: PR in progress" |
| 20 | + - "Progress: done" |
| 21 | + - "B2B: GraphQL" |
| 22 | + - "Progress: PR Created" |
| 23 | + - "PAP" |
| 24 | + - "Project: Login as Customer" |
| 25 | + - "Project: GraphQL" |
| 26 | + |
| 27 | +# Set to true to ignore issues in a project (defaults to false) |
| 28 | +exemptProjects: false |
| 29 | + |
| 30 | +# Set to true to ignore issues in a milestone (defaults to false) |
| 31 | +exemptMilestones: false |
| 32 | + |
| 33 | +# Set to true to ignore issues with an assignee (defaults to false) |
| 34 | +exemptAssignees: false |
| 35 | + |
| 36 | +# Label to use when marking as stale |
| 37 | +staleLabel: "stale issue" |
| 38 | + |
| 39 | +# Comment to post when marking as stale. Set to `false` to disable |
| 40 | +markComment: > |
| 41 | + This issue has been automatically marked as stale because it has not had |
| 42 | + recent activity. It will be closed after 14 days if no further activity occurs. Thank you |
| 43 | + for your contributions. |
| 44 | +# Comment to post when removing the stale label. |
| 45 | +# unmarkComment: > |
| 46 | +# Your comment here. |
| 47 | + |
| 48 | +# Comment to post when closing a stale Issue or Pull Request. |
| 49 | +# closeComment: > |
| 50 | +# Your comment here. |
| 51 | + |
| 52 | +# Limit the number of actions per hour, from 1-30. Default is 30 |
| 53 | +limitPerRun: 30 |
| 54 | + |
| 55 | +# Limit to only `issues` or `pulls` |
| 56 | +only: issues |
| 57 | + |
| 58 | +# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': |
| 59 | +# pulls: |
| 60 | +# daysUntilStale: 30 |
| 61 | +# markComment: > |
| 62 | +# This pull request has been automatically marked as stale because it has not had |
| 63 | +# recent activity. It will be closed if no further activity occurs. Thank you |
| 64 | +# for your contributions. |
| 65 | + |
| 66 | +# issues: |
| 67 | +# exemptLabels: |
| 68 | +# - confirmed |
0 commit comments