File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2019 Hartmut Kaiser
2
+ # 2024 Patrick Diehl
3
+ #
4
+ # SPDX-License-Identifier: BSL-1.0
5
+ # Distributed under the Boost Software License, Version 1.0. (See accompanying
6
+ # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7
+
8
+ # Number of days of inactivity before an issue becomes stale
9
+ daysUntilStale : 180
10
+
11
+ # Number of days of inactivity before a stale issue is closed
12
+ daysUntilClose : 30
13
+
14
+ # Issues with these labels will never be considered stale
15
+ exemptLabels :
16
+ - " tag: pinned"
17
+
18
+ # Label to use when marking an issue as stale
19
+ staleLabel : " tag: wontfix"
20
+
21
+ # Comment to post when marking an issue as stale. Set to `false` to disable
22
+ markComment : >
23
+ This issue has been automatically marked as stale because it has not had
24
+ recent activity. It will be closed if no further activity occurs. Thank you
25
+ for your contributions.
26
+
27
+ # Comment to post when closing a stale issue. Set to `false` to disable
28
+ closeComment : >
29
+ This issue has been automatically closed. Please re-open if necessary.
You can’t perform that action at this time.
0 commit comments