Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c7a3052

Browse files
authoredOct 2, 2020
Merge branch 'master' into testing-cln
2 parents aaef028 + 2038d53 commit c7a3052

File tree

261 files changed

+11535
-7773
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

261 files changed

+11535
-7773
lines changed
 

‎.github/workflows/stale-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: "Stale PRs"
22
on:
33
schedule:
44
# * is a special character in YAML so you have to quote this string
5-
- cron: "0 */6 * * *"
5+
- cron: "0 0 * * *"
66

77
jobs:
88
stale:
@@ -11,8 +11,8 @@ jobs:
1111
- uses: actions/stale@v3
1212
with:
1313
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."
15+
skip-stale-pr-message: false
1616
stale-pr-label: "Stale"
1717
exempt-pr-labels: "Needs Review,Blocked,Needs Discussion"
1818
days-before-stale: 30

‎.pre-commit-config.yaml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,12 @@ repos:
3434
rev: v1.6.0
3535
hooks:
3636
- id: rst-backticks
37-
# these exclusions should be removed and the files fixed
38-
exclude: (?x)(
39-
categorical\.rst|
40-
contributing\.rst|
41-
contributing_docstring\.rst|
42-
extending\.rst|
43-
ecosystem\.rst|
44-
comparison_with_sql\.rst|
45-
install\.rst|
46-
calculate_statistics\.rst|
47-
combine_dataframes\.rst|
48-
v0\.|
49-
v1\.0\.|
50-
v1\.1\.[012])
37+
- repo: local
38+
hooks:
39+
- id: pip_to_conda
40+
name: Generate pip dependency from conda
41+
description: This hook checks if the conda environment.yml and requirements-dev.txt are equal
42+
language: system
43+
entry: python -m scripts.generate_pip_deps_from_conda
44+
files: ^(environment.yml|requirements-dev.txt)$
45+
pass_filenames: false

0 commit comments

Comments
 (0)
Please sign in to comment.