File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 21
21
22
22
- name : Python Semantic Release
23
23
id : release
24
- uses : python-semantic-release/python-semantic-release@v9.21.0
24
+ uses : python-semantic-release/python-semantic-release@v9.21.1
25
25
with :
26
26
github_token : ${{ secrets.RELEASE_GITHUB_TOKEN }}
27
27
Original file line number Diff line number Diff line change 7
7
hooks :
8
8
- id : black
9
9
- repo : https://github.com/commitizen-tools/commitizen
10
- rev : v4.6.1
10
+ rev : v4.7.0
11
11
hooks :
12
12
- id : commitizen
13
13
stages : [commit-msg]
Original file line number Diff line number Diff line change @@ -82,13 +82,13 @@ Get a project's CI/CD job token inbound groups allowlist::
82
82
83
83
allowlist = scope.groups_allowlist.list(get_all=True)
84
84
85
- Add a project to the project's inbound groups allowlist::
85
+ Add a group to the project's inbound groups allowlist::
86
86
87
- allowed_project = scope.groups_allowlist.create({"target_project_id ": 42})
87
+ allowed_group = scope.groups_allowlist.create({"target_group_id ": 42})
88
88
89
- Remove a project from the project's inbound agroups llowlist ::
89
+ Remove a group from the project's inbound groups allowlist ::
90
90
91
- allowed_project .delete()
91
+ allowed_group .delete()
92
92
# or directly using a Group ID
93
93
scope.groups_allowlist.delete(42)
94
94
@@ -97,4 +97,3 @@ Remove a project from the project's inbound agroups llowlist::
97
97
Similar to above, the ID attributes you receive from the create and list
98
98
APIs are not consistent. To safely retrieve the ID of the allowlisted group
99
99
regardless of how the object was created, always use its ``.get_id() `` method.
100
-
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ class ApplicationSettingsManager(
25
25
"id" ,
26
26
"default_projects_limit" ,
27
27
"signup_enabled" ,
28
+ "silent_mode_enabled" ,
28
29
"password_authentication_enabled_for_web" ,
29
30
"gravatar_enabled" ,
30
31
"sign_in_text" ,
Original file line number Diff line number Diff line change 1
1
-r requirements.txt
2
2
argcomplete==2.0.0
3
3
black==25.1.0
4
- commitizen==4.6.1
4
+ commitizen==4.7.0
5
5
flake8==7.2.0
6
6
isort==6.0.1
7
7
mypy==1.15.0
@@ -11,4 +11,4 @@ responses==0.25.7
11
11
respx==0.22.0
12
12
types-PyYAML==6.0.12.20250402
13
13
types-requests==2.32.0.20250328
14
- types-setuptools==80.3 .0.20250505
14
+ types-setuptools==80.4 .0.20250511
You can’t perform that action at this time.
0 commit comments