summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorkshithijiyer <kshithij.ki@gmail.com>2020-09-11 16:44:56 +0530
committerBala Konda Reddy M <bala12352@gmail.com>2020-09-17 04:26:37 +0000
commit8455fa903040b297126fe57e55f793da0f696e69 (patch)
tree98ac020b6e778d1f0f3f67f9c81f622bdd0d5d88 /.github
parente5d11db9da5f7567d3544020f44917eee51488ad (diff)
[Config] Add stale.yml to enable stale bot
Problem: We have received a lot of issues in the past which have been abandoned for quite sometime and were not closed every after a couple of years, one such example is [1] which was open for almost 2 years. Hence to take care of such issues we have decided to add stale bot which will close stale issues automatically. The process which is to be followed will be as below: 1. Once we get a new issue by default we will be adding `ToBeTriaged` label. 2. Once the issue is triaged and is to be fixed it will be assigned to a contributor and the label `ToBeFixed` will be added. 3. If the issue is not be be fixed then we will be removing the `ToBeTriaged` label after this the bot will wait for 90 days for any comment. 4. Once 90 days are complete stale bot will drop a last comment and will wait for 14 days post which the bot will automatically close the issue with `wontfix` label. links: [1] https://github.com/gluster/glusto-tests/issues/15 Fixes: https://github.com/gluster/glusto-tests/issues/31 Change-Id: I6c4c72433eccdb22fbefea2c62f511634d928576 Signed-off-by: kshithijiyer <kshithij.ki@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/stale.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/stale.yml b/.github/stale.yml
new file mode 100644
index 000000000..4a204b599
--- /dev/null
+++ b/.github/stale.yml
@@ -0,0 +1,25 @@
+# Number of days of inactivity before an issue becomes stale
+daysUntilStale: 90
+# Number of days of inactivity before a stale issue is closed
+daysUntilClose: 14
+# Issues with these labels will never be considered stale
+exemptLabels:
+ - ToBeTriaged
+ - ToBeFixed
+# Label to use when marking an issue as stale
+staleLabel: wontfix
+
+# Comment to post when marking an issue as stale. Set to `false` to disable
+markComment: >
+ Thank you for your contributions.
+
+ Noticed that this issue is not having any activity in last 3 months! We
+ are marking this issue as stale because it has not had any recent activity
+ and we have decided not to fix it while triaging.
+
+ It will be closed in 14 days if no one responds with a comment here.
+
+# Comment to post when closing a stale issue. Set to `false` to disable
+closeComment: >
+ Closing this issue as there was no update since my last update on issue.
+ If this is an issue which is still valid, feel free to reopen it.