code.gitea.io/gitea@v1.21.7/.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: 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.
     8  daysUntilClose: 14
     9  
    10  # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
    11  exemptLabels:
    12    - status/blocked
    13    - kind/security
    14    - lgtm/done
    15    - reviewed/confirmed
    16    - priority/critical
    17    - kind/proposal
    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  # Label to use when marking as stale
    26  staleLabel: stale
    27  
    28  # Comment to post when marking as stale. Set to `false` to disable
    29  markComment: >
    30    This issue has been automatically marked as stale because it has not had recent activity.
    31    I am here to help clear issues left open even if solved or waiting for more insight.
    32    This issue will be closed if no further activity occurs during the next 2 weeks.
    33    If the issue is still valid just add a comment to keep it alive.
    34    Thank you for your contributions.
    35  
    36  # Comment to post when closing a stale Issue or Pull Request.
    37  closeComment: >
    38    This issue has been automatically closed because of inactivity.
    39    You can re-open it if needed.
    40  
    41  # Limit the number of actions per hour, from 1-30. Default is 30
    42  limitPerRun: 1
    43  
    44  # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
    45  pulls:
    46    daysUntilStale: 60
    47    daysUntilClose: 60
    48    markComment: >
    49      This pull request has been automatically marked as stale because it has not had
    50      recent activity. It will be closed if no further activity occurs during the next 2 months. Thank you
    51      for your contributions.
    52    closeComment: >
    53      This pull request has been automatically closed because of inactivity.
    54      You can re-open it if needed.