Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB

  1. # Number of days of inactivity before an Issue or Pull Request becomes stale
  2. daysUntilStale: 60
  3. # Number of days of inactivity before a stale Issue or Pull Request is closed.
  4. # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
  5. daysUntilClose: 7
  6. # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
  7. exemptLabels:
  8. - enhancement
  9. - bug
  10. - staged for release
  11. # Set to true to ignore issues in a project (defaults to false)
  12. exemptProjects: false
  13. # Set to true to ignore issues in a milestone (defaults to false)
  14. exemptMilestones: false
  15. # Label to use when marking as stale
  16. staleLabel: stale
  17. # Comment to post when marking as stale. Set to `false` to disable
  18. markComment: >
  19. This issue has been automatically marked as stale because it has not had
  20. recent activity. It will be closed in 7 days if no further activity occurs.
  21. Thank you for your contributions.
  22. # Comment to post when removing the stale label.
  23. # unmarkComment: >
  24. # Your comment here.
  25. # Comment to post when closing a stale Issue or Pull Request.
  26. closeComment: >
  27. This issue will be auto-closed because there hasn't been any activity for two months. Feel free to open a new one if you still experience this problem.
  28. # Limit the number of actions per hour, from 1-30. Default is 30
  29. limitPerRun: 30
  30. # Limit to only `issues` or `pulls`
  31. only: issues