mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-19 20:37:20 +00:00

As the amount of users in the community has grown, also the rate of issues that are opened every month have grown. This led to an increase of issues left behind (not closed by its author no matter if it is answered or solved) making collaborators to spend more time on searching for those between the opened issues. The actual rate of the Bot is 60 days to close an issue that has been left behind (45 days to raise attention to that issue and then other more 15 days to close it), and as the amount of opened issues are around 250-300 each month, in 60 days the amount of issues can raise to about 600 opened issues if no action is taken by collaborators. With this update to the BOT, the new rate will be 25 days to raise the attention to the issue, and if there is no one comment on that issue, the Bot will close it after 5 more days. This 30 days are more suited to the actual speed of the project. As always the Bot will not close any issue labeled as - pinned - security - enhancement - bug And also, if the issue is closed by the Bot, it can be reopened again. Also this update expands the Bot activity to PRs, so PRs should be labeled as well as issues.
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
# Number of days of inactivity before an Issue or Pull Request becomes stale
|
|
daysUntilStale: 25
|
|
|
|
# Number of days of inactivity before a stale Issue or Pull Request is closed.
|
|
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
|
|
daysUntilClose: 5
|
|
|
|
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
|
|
exemptLabels:
|
|
- pinned
|
|
- security
|
|
- enhancement
|
|
- bug
|
|
|
|
# Set to true to ignore issues in a project (defaults to false)
|
|
exemptProjects: false
|
|
|
|
# Set to true to ignore issues in a milestone (defaults to false)
|
|
exemptMilestones: false
|
|
|
|
# Label to use when marking as stale
|
|
staleLabel: stale
|
|
|
|
# Comment to post when marking as stale. Set to `false` to disable
|
|
markComment: >
|
|
This issue has been automatically marked as stale because it has not had
|
|
recent activity. It will be closed if no further activity occurs. Thank you
|
|
for your contributions.
|
|
# Comment to post when removing the stale label.
|
|
# unmarkComment: >
|
|
# Your comment here.
|
|
|
|
# Comment to post when closing a stale Issue or Pull Request.
|
|
closeComment: >
|
|
This issue will be auto-closed because there hasn't been any activity for a few months. Feel free to open a new one if you still experience this problem.
|
|
# Limit the number of actions per hour, from 1-30. Default is 30
|
|
limitPerRun: 30
|
|
|
|
# Limit to only `issues` or `pulls`
|
|
#only: issues
|