We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90d27db commit 850cea7Copy full SHA for 850cea7
.github/workflows/linting.yml
@@ -29,7 +29,9 @@ jobs:
29
run: |
30
pre-commit run ${{ matrix.tool }} --all-files
31
- name: Run gitlint
32
+ env:
33
+ TITLE: ${{ github.event.pull_request.title }}
34
if: ${{ github.event_name == 'pull_request' && matrix.tool == 'gitlint' }}
35
36
python -m pip install --upgrade gitlint
- echo ${{ github.event.pull_request.title }} | gitlint
37
+ echo "$TITLE" | gitlint
.pre-commit-config.yaml
@@ -5,7 +5,7 @@ repos:
5
- id: isort
6
7
- repo: https://github.com/python/black
8
- rev: 22.1.0
+ rev: 22.3.0
9
hooks:
10
- id: black
11
dev-requirements.txt
@@ -1,4 +1,4 @@
1
-black==22.1.0
+black==22.3.0
2
isort==5.10.1
3
pre-commit==2.17.0
4
flake8==4.0.1
0 commit comments