File tree 2 files changed +37
-1
lines changed
2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Number of days of inactivity before an Issue or Pull Request becomes stale
2
+ daysUntilStale : 60
3
+
4
+ # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
5
+ # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
6
+ daysUntilClose : 7
7
+
8
+ # Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
9
+ onlyLabels : []
10
+
11
+ # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
12
+ exemptLabels :
13
+ - roadmap
14
+ - bug
15
+ - design
16
+
17
+ # Set to true to ignore issues in a project (defaults to false)
18
+ exemptProjects : true
19
+
20
+ # Set to true to ignore issues in a milestone (defaults to false)
21
+ exemptMilestones : true
22
+
23
+ # Label to use when marking as stale
24
+ staleLabel : wontfix
25
+
26
+ # Comment to post when marking as stale. Set to `false` to disable
27
+ markComment : >
28
+ This issue has been automatically marked as stale because it has not had
29
+ recent activity. It will be closed if no further activity occurs. Thank you
30
+ for your contributions.
31
+
32
+ # Limit the number of actions per hour, from 1-30. Default is 30
33
+ limitPerRun : 30
34
+
35
+ # Limit to only `issues` or `pulls`
36
+ only : issues
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ notifications:
10
10
11
11
before_install :
12
12
- sudo apt-get update
13
- - if [["$TRAVIS_PYTHON_VERSION" == "2.7"]]; then
13
+ - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
14
14
wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh;
15
15
else
16
16
wget http://repo.continuum.io/miniconda/Miniconda3-3.8.3-Linux-x86_64.sh -O miniconda.sh;
You can’t perform that action at this time.
0 commit comments