You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/stale-pr.yml
+5-5
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ name: "Stale PRs"
2
2
on:
3
3
schedule:
4
4
# * is a special character in YAML so you have to quote this string
5
-
- cron: "0 */6 * * *"
5
+
- cron: "0 0 * * *"
6
6
7
7
jobs:
8
8
stale:
@@ -11,11 +11,11 @@ jobs:
11
11
- uses: actions/stale@v3
12
12
with:
13
13
repo-token: ${{ secrets.GITHUB_TOKEN }}
14
-
stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity."
14
+
stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity. Please update or respond to this comment if you're still interested in working on this."
- JOB="3.9-dev" PATTERN="(not slow and not network and not clipboard)"
42
+
37
43
- env:
38
44
- JOB="3.8" ENV_FILE="ci/deps/travis-38.yaml" PATTERN="(not slow and not network and not clipboard)"
39
45
40
46
- env:
41
47
- JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="(not slow and not network and not clipboard)"
42
48
43
-
- arch: arm64
44
-
env:
45
-
- JOB="3.7, arm64" PYTEST_WORKERS=8 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard)"
46
-
47
49
- env:
48
50
- JOB="3.7, locale" ENV_FILE="ci/deps/travis-37-locale.yaml" PATTERN="((not slow and not network and not clipboard) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8" SQL="1"
49
51
services:
50
52
- mysql
51
53
- postgresql
52
54
55
+
- arch: arm64
56
+
env:
57
+
- JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)"
58
+
53
59
- env:
54
60
# Enabling Deprecations when running tests
55
61
# PANDAS_TESTING_MODE="deprecate" causes DeprecationWarning messages to be displayed in the logs
@@ -58,13 +64,12 @@ matrix:
58
64
services:
59
65
- mysql
60
66
- postgresql
67
+
61
68
allow_failures:
69
+
# Moved to allowed_failures 2020-09-29 due to timeouts https://github.com/pandas-dev/pandas/issues/36719
62
70
- arch: arm64
63
71
env:
64
-
- JOB="3.7, arm64" PYTEST_WORKERS=8 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard)"
65
-
- dist: bionic
66
-
env:
67
-
- JOB="3.9-dev" PATTERN="(not slow and not network and not clipboard)"
72
+
- JOB="3.7, arm64" PYTEST_WORKERS=1 ENV_FILE="ci/deps/travis-37-arm64.yaml" PATTERN="(not slow and not network and not clipboard and not arm_slow)"
68
73
69
74
70
75
before_install:
@@ -78,12 +83,6 @@ before_install:
78
83
- uname -a
79
84
- git --version
80
85
- ./ci/check_git_tags.sh
81
-
# Because travis runs on Google Cloud and has a /etc/boto.cfg,
0 commit comments