Skip to content

Commit ed125d3

Browse files
authored
Merge branch 'main' into pr-225
2 parents af5e5f9 + 8253a57 commit ed125d3

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [main]
66
pull_request:
77
branches: [main]
8+
schedule:
9+
- cron: "0 5 1,15 * *"
810

911
concurrency:
1012
group: ${{ github.workflow }}-${{ github.ref }}

.pre-commit-config.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ repos:
1111
hooks:
1212
- id: black
1313
- repo: https://github.com/asottile/blacken-docs
14-
rev: 1.15.0
14+
rev: 1.16.0
1515
hooks:
1616
- id: blacken-docs
1717
- repo: https://github.com/pre-commit/mirrors-prettier
18-
rev: v3.0.1
18+
rev: v3.0.2
1919
hooks:
2020
- id: prettier
2121
# Newer versions of node don't work on systems that have an older version of GLIBC
@@ -25,7 +25,7 @@ repos:
2525
# https://github.com/jupyterlab/jupyterlab/issues/12675
2626
language_version: "17.9.1"
2727
- repo: https://github.com/astral-sh/ruff-pre-commit
28-
rev: v0.0.284
28+
rev: v0.0.285
2929
hooks:
3030
- id: ruff
3131
args: [--fix, --exit-non-zero-on-fix]
@@ -43,6 +43,9 @@ repos:
4343
args: [--fix=lf]
4444
- id: trailing-whitespace
4545
- id: check-case-conflict
46+
# Check that there are no merge conflicts (could be generated by template sync)
47+
- id: check-merge-conflict
48+
args: [--assume-in-merge]
4649
- repo: local
4750
hooks:
4851
- id: forbid-to-commit

0 commit comments

Comments
 (0)