Skip to content

Commit 1d13e25

Browse files
committed
Merge branch 'master' of github.com:r9y9/pyreaper
2 parents cf59de0 + 09a99d6 commit 1d13e25

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

.github/stale.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ notifications:
1010

1111
before_install:
1212
- sudo apt-get update
13-
- if [["$TRAVIS_PYTHON_VERSION" == "2.7"]]; then
13+
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
1414
wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh;
1515
else
1616
wget http://repo.continuum.io/miniconda/Miniconda3-3.8.3-Linux-x86_64.sh -O miniconda.sh;

0 commit comments

Comments
 (0)