dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

stale.yml (2100B)


      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: 90
      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: 30
      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   - "high priority"
     16   - "good first issue"
     17   - "pinned"
     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: true
     24 
     25 # Set to true to ignore issues with an assignee (defaults to false)
     26 exemptAssignees: true
     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 if no further activity occurs. Thank you
     35   for your contribution and understanding!
     36 
     37 # Comment to post when removing the stale label.
     38 # unmarkComment: >
     39 #   Your comment here.
     40 
     41 # Comment to post when closing a stale Issue or Pull Request.
     42 closeComment: >
     43   This issues been automatically closed due to lack of activity. Feel free to re-open it
     44   if you ever come back to it.
     45 
     46 # Limit the number of actions per hour, from 1-30. Default is 30
     47 limitPerRun: 30
     48 
     49 # Limit to only `issues` or `pulls`
     50 # only: issues
     51 
     52 # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
     53 # pulls:
     54 #   daysUntilStale: 30
     55 #   markComment: >
     56 #     This pull request has been automatically marked as stale because it has not had
     57 #     recent activity. It will be closed if no further activity occurs. Thank you
     58 #     for your contributions.
     59 
     60 # issues:
     61 #   exemptLabels:
     62 #     - confirmed