|
| 1 | +# Tencent is pleased to support the open source community by making Polaris available. |
| 2 | +# |
| 3 | +# Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved. |
| 4 | +# |
| 5 | +# Licensed under the BSD 3-Clause License (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# https://opensource.org/licenses/BSD-3-Clause |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software distributed |
| 12 | +# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
| 13 | +# CONDITIONS OF ANY KIND, either express or implied. See the License for the |
| 14 | +# specific language governing permissions and limitations under the License. |
| 15 | + |
| 16 | +# Configuration for probot-stale - https://github.com/probot/stale |
| 17 | + |
| 18 | +# General configuration |
| 19 | +# Label to use when marking as stale |
| 20 | +staleLabel: stale |
| 21 | + |
| 22 | +# Pull request specific configuration |
| 23 | +pulls: |
| 24 | + # Number of days of inactivity before an Issue or Pull Request becomes stale |
| 25 | + daysUntilStale: 14 |
| 26 | + # Number of days of inactivity before a stale Issue or Pull Request is closed. |
| 27 | + # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. |
| 28 | + daysUntilClose: 30 |
| 29 | + # Comment to post when marking as stale. Set to `false` to disable |
| 30 | + markComment: > |
| 31 | + This pull request has been automatically marked as stale because it has not had |
| 32 | + activity in the last 2 weeks. It will be closed in 30 days if no further activity occurs. Please |
| 33 | + feel free to give a status update now, ping for review, or re-open when it's ready. |
| 34 | + Thank you for your contributions! |
| 35 | + # Comment to post when closing a stale Issue or Pull Request. |
| 36 | + closeComment: > |
| 37 | + This pull request has been automatically closed because it has not had |
| 38 | + activity in the last 30 days. Please feel free to give a status update now, ping for review, or re-open when it's ready. |
| 39 | + Thank you for your contributions! |
| 40 | + # Limit the number of actions per hour, from 1-30. Default is 30 |
| 41 | + limitPerRun: 1 |
| 42 | + |
| 43 | +exemptLabels: |
| 44 | + - help wanted |
| 45 | + - kind/customer issue |
| 46 | + - kind/test failure |
| 47 | + - Epic |
| 48 | + - no stalebot |
| 49 | + |
| 50 | +# Issue specific configuration |
| 51 | +issues: |
| 52 | + # TODO: Consider increasing the limitPerRun once we are satisfied with the bot's performance |
| 53 | + limitPerRun: 1 |
| 54 | + daysUntilStale: 90 |
| 55 | + daysUntilClose: 30 |
| 56 | + markComment: > |
| 57 | + This issue has been automatically marked as stale because it has not had activity in the |
| 58 | + last 90 days. It will be closed in the next 30 days unless it is tagged "help wanted" or other activity |
| 59 | + occurs. Thank you for your contributions. |
| 60 | + closeComment: > |
| 61 | + This issue has been automatically closed because it has not had activity in the |
| 62 | + last month and a half. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted". |
| 63 | + Thank you for your contributions. |
0 commit comments