File tree Expand file tree Collapse file tree 4 files changed +35
-9
lines changed Expand file tree Collapse file tree 4 files changed +35
-9
lines changed Original file line number Diff line number Diff line change 61
61
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
62
62
steps :
63
63
- uses : actions/checkout@v2
64
+ with :
65
+ fetch-depth : 0
64
66
- name : Set up Python
65
67
uses : actions/setup-python@v2
66
68
with :
75
77
with :
76
78
user : __token__
77
79
password : ${{ secrets.pypi_password }}
80
+ - name : Release Notary Action
81
+ uses : docker://aevea/release-notary:0.9.1
82
+ env :
83
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -125,3 +125,4 @@ secret.py
125
125
secrets
126
126
127
127
dist /
128
+ .cache_ggshield
Original file line number Diff line number Diff line change 4
4
rev : 20.8b1
5
5
hooks :
6
6
- id : black
7
- language_version : python3.8
8
- - repo : https://github.com/pre-commit/mirrors-isort
9
- rev : v5.7.0
7
+ language_version : python3
8
+ exclude : snap_
9
+
10
+ - repo : https://gitlab.com/pycqa/flake8
11
+ rev : 3.9.0
10
12
hooks :
11
- - id : isort
13
+ - id : flake8
14
+
15
+ - repo : https://github.com/pre-commit/mirrors-mypy
16
+ rev : v0.812
17
+ hooks :
18
+ - id : mypy
19
+
12
20
- repo : https://github.com/pre-commit/pre-commit-hooks
13
21
rev : v3.4.0
14
22
hooks :
15
23
- id : check-json
16
24
- id : check-added-large-files
17
25
- id : check-yaml
18
- - repo : https://gitlab.com/pycqa/flake8
19
- rev : 3.8.4
26
+
27
+ - repo : https://github.com/pre-commit/mirrors-isort
28
+ rev : v5.8.0
20
29
hooks :
21
- - id : flake8
30
+ - id : isort
31
+ args : [--settings-path, setup.cfg]
32
+
22
33
- repo : https://github.com/Woile/commitizen
23
- rev : v2.13 .0
34
+ rev : v2.16 .0
24
35
hooks :
25
36
- id : commitizen
26
37
# don't forget to run pre-commit install --hook-type commit-msg for this hook to run
27
38
stages : [commit-msg]
39
+
28
40
- repo : https://github.com/pre-commit/mirrors-prettier # to format JSON, YAML and markdown files among others
29
41
rev : v2.2.1
30
42
hooks :
31
43
- id : prettier
44
+
45
+ - repo : https://github.com/gitguardian/gg-shield
46
+ rev : v1.3.2
47
+ hooks :
48
+ - id : ggshield
49
+ language_version : python3
50
+ stages : [commit]
Original file line number Diff line number Diff line change 2
2
from .client import GGClient
3
3
4
4
5
- __version__ = "1.1.2 "
5
+ __version__ = "1.1.3 "
6
6
GGClient ._version = __version__
7
7
8
8
__all__ = [
You can’t perform that action at this time.
0 commit comments