File tree Expand file tree Collapse file tree 4 files changed +64
-13
lines changed Expand file tree Collapse file tree 4 files changed +64
-13
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
updates :
3
- - package-ecosystem : pip
4
- directory : " /"
5
- schedule :
6
- interval : monthly
7
- assignees :
8
- - " ezio-melotti"
3
+ - package-ecosystem : pip
4
+ directory : " /"
5
+ schedule :
6
+ interval : monthly
7
+ assignees :
8
+ - " ezio-melotti"
9
9
groups :
10
10
pip :
11
11
patterns :
12
12
- " *"
13
13
14
- - package-ecosystem : " github-actions"
15
- directory : " /"
16
- schedule :
17
- interval : monthly
18
- assignees :
19
- - " ezio-melotti"
14
+ - package-ecosystem : " github-actions"
15
+ directory : " /"
16
+ schedule :
17
+ interval : monthly
18
+ assignees :
19
+ - " ezio-melotti"
20
20
groups :
21
21
actions :
22
22
patterns :
Original file line number Diff line number Diff line change
1
+ name : Lint
2
+
3
+ on : [push, pull_request, workflow_dispatch]
4
+
5
+ env :
6
+ FORCE_COLOR : 1
7
+
8
+ permissions :
9
+ contents : read
10
+
11
+ jobs :
12
+ lint :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ - uses : actions/setup-python@v5
18
+ with :
19
+ python-version : " 3.x"
20
+ cache : pip
21
+ - uses : pre-commit/action@v3.0.1
Original file line number Diff line number Diff line change
1
+ repos :
2
+ - repo : https://github.com/pre-commit/pygrep-hooks
3
+ rev : v1.10.0
4
+ hooks :
5
+ - id : python-check-blanket-noqa
6
+
7
+ - repo : https://github.com/pre-commit/pre-commit-hooks
8
+ rev : v4.5.0
9
+ hooks :
10
+ - id : check-added-large-files
11
+ - id : check-case-conflict
12
+ - id : check-merge-conflict
13
+ - id : check-yaml
14
+ - id : debug-statements
15
+ - id : end-of-file-fixer
16
+ - id : forbid-submodules
17
+ - id : trailing-whitespace
18
+
19
+ - repo : https://github.com/python-jsonschema/check-jsonschema
20
+ rev : 0.28.1
21
+ hooks :
22
+ - id : check-dependabot
23
+ - id : check-github-workflows
24
+
25
+ - repo : meta
26
+ hooks :
27
+ - id : check-hooks-apply
28
+ - id : check-useless-excludes
29
+
30
+ ci :
31
+ autoupdate_schedule : quarterly
Original file line number Diff line number Diff line change @@ -175,4 +175,3 @@ async def test_assign_pr_to_coredev():
175
175
176
176
await util .assign_pr_to_core_dev (gh , issue_number , coredev_login )
177
177
assert gh .patch_url == f"/repos/python/cpython/issues/{ issue_number } "
178
-
You can’t perform that action at this time.
0 commit comments