diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-06-05 10:42:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-05 10:42:01 +0200 |
commit | 42af084f347d5a79f102311c87d5d3e5dc43d01d (patch) | |
tree | 41f2df101ba4c8cae22bc1a2879da52e94808307 | |
parent | bc43718f22192016a608098350585d4c0d3cf0d2 (diff) | |
parent | 59b03bd3cecf37cffdfb530354e55f059a633f0b (diff) | |
download | nextcloud-server-42af084f347d5a79f102311c87d5d3e5dc43d01d.tar.gz nextcloud-server-42af084f347d5a79f102311c87d5d3e5dc43d01d.zip |
Add stale config (#15873)
Add stale config
-rw-r--r-- | .github/stale.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 00000000000..0235daa9121 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,30 @@ +# We wait 2 months to check +daysUntilStale: 60 + +# If no answer after two weeks, we close +daysUntilClose: 14 + +# Only issues that requires info from the op +onlyLabels: + - "needs info" + +# Only if issues that are not triaged +exemptLabels: + - "1. to develop" + - "2. developing" + - "3. to review" + - "4. to release" + - security + +# 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 and it seems to be missing some essential informations. + It will be closed if no further activity occurs. Thank you + for your contributions. + +# Limit the number of actions per hour, from 1-30. Default is 30 +limitPerRun: 30 |