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
+3-3
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,8 +11,8 @@ 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."
15
-
skip-stale-pr-message: true
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."
Copy file name to clipboardExpand all lines: .travis.yml
+10-4
Original file line number
Diff line number
Diff line change
@@ -46,16 +46,16 @@ matrix:
46
46
- env:
47
47
- JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="(not slow and not network and not clipboard)"
48
48
49
-
- arch: arm64
50
-
env:
51
-
- 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)"
52
-
53
49
- env:
54
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"
55
51
services:
56
52
- mysql
57
53
- postgresql
58
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
+
59
59
- env:
60
60
# Enabling Deprecations when running tests
61
61
# PANDAS_TESTING_MODE="deprecate" causes DeprecationWarning messages to be displayed in the logs
@@ -65,6 +65,12 @@ matrix:
65
65
- mysql
66
66
- postgresql
67
67
68
+
allow_failures:
69
+
# Moved to allowed_failures 2020-09-29 due to timeouts https://github.com/pandas-dev/pandas/issues/36719
70
+
- arch: arm64
71
+
env:
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)"
0 commit comments