Skip to content

Commit 4bd8a4b

Browse files
authored
Merge branch 'main' into bugfix/issue-184
2 parents dd6ac2c + 3f0315e commit 4bd8a4b

3 files changed

Lines changed: 7 additions & 8 deletions

File tree

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# https://pre-commit.com/
22
ci:
33
autofix_prs: true
4-
autofix_commit_msg: 'ci: auto fixes from pre-commit.com hooks'
5-
autoupdate_commit_msg: 'ci: pre-commit autoupdate'
4+
autofix_commit_msg: 'chore: auto fixes from pre-commit.com hooks'
5+
autoupdate_commit_msg: 'chore: pre-commit autoupdate'
66

77
repos:
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v5.0.0
9+
rev: v6.0.0
1010
hooks:
1111
- id: check-yaml
1212
- id: check-toml
@@ -15,15 +15,15 @@ repos:
1515
- id: name-tests-test
1616
- id: requirements-txt-fixer
1717
- repo: https://github.com/psf/black-pre-commit-mirror
18-
rev: 24.10.0
18+
rev: 26.3.1
1919
hooks:
2020
- id: black
2121
- repo: https://github.com/pre-commit/mirrors-mypy
22-
rev: v1.12.0
22+
rev: v1.20.1
2323
hooks:
2424
- id: mypy
2525
- repo: https://github.com/codespell-project/codespell
26-
rev: v2.3.0
26+
rev: v2.4.2
2727
hooks:
2828
- id: codespell
2929
args: [--ignore-words-list=assertin]

main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import re
77
from github import Github, Auth, GithubException # type: ignore
88

9-
109
# Constants for message titles
1110
SUCCESS_TITLE = "# Commit-Check ✔️"
1211
FAILURE_TITLE = "# Commit-Check ❌"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# For details please see: https://github.com/commit-check/commit-check
33
commit-check==2.5.0
44
# Interact with the GitHub API.
5-
PyGithub==2.9.0
5+
PyGithub==2.9.1

0 commit comments

Comments
 (0)