...

Text file src/github.com/prometheus/alertmanager/.github/stale.yml

Documentation: github.com/prometheus/alertmanager/.github

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

View as plain text