github.com/prestonp/nomad@v0.10.4/.github/stale.yml (about)

     1  # Number of days of inactivity before an Issue or Pull Request becomes stale
     2  daysUntilStale: 90
     3  
     4  # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
     5  # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
     6  daysUntilClose: 30
     7  
     8  # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
     9  # We don't close any issue that is an enhancement or confirmed bug, but issues waiting for reproduction
    10  # cases and questions tend to get outdated.
    11  exemptLabels:
    12    - "enhancement"
    13    - "bug"
    14    - "thinking"
    15  
    16  # Label to use when marking as stale
    17  staleLabel: "waiting-reply"
    18  
    19  # Comment to post when marking as stale. Set to `false` to disable
    20  markComment: |
    21    Hey there
    22  
    23    Since this issue hasn't had any activity in a while - we're going to automatically close it in 30 days. If you're still seeing this issue with the latest version of Nomad, please respond here and we'll keep this open and take another look at this.
    24  
    25    Thanks!
    26  
    27  # Comment to post when removing the stale label. Set to `false` to disable
    28  unmarkComment: false
    29  
    30  # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable
    31  closeComment: >
    32    This issue will be auto-closed because there hasn't been any activity for a few months.
    33    Feel free to [open a new one](https://github.com/hashicorp/nomad/issues/new) if you still experience this problem :+1:
    34  # Limit to only `issues`
    35  only: issues