Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
4d8f28f6
Commit
4d8f28f6
authored
Jun 06, 2019
by
Maikel
Committed by
Nick Thomas
Jul 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document the negative commit message push rule for the API.
parent
2523672b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
24 deletions
+27
-24
doc/api/projects.md
doc/api/projects.md
+27
-24
No files found.
doc/api/projects.md
View file @
4d8f28f6
...
@@ -1631,6 +1631,7 @@ GET /projects/:id/push_rule
...
@@ -1631,6 +1631,7 @@ GET /projects/:id/push_rule
"id"
:
1
,
"id"
:
1
,
"project_id"
:
3
,
"project_id"
:
3
,
"commit_message_regex"
:
"Fixes
\d
+
\.
.*"
,
"commit_message_regex"
:
"Fixes
\d
+
\.
.*"
,
"commit_message_negative_regex"
:
"ssh
\:\/\/
"
,
"branch_name_regex"
:
""
,
"branch_name_regex"
:
""
,
"deny_delete_tag"
:
false
,
"deny_delete_tag"
:
false
,
"created_at"
:
"2012-10-12T17:04:47Z"
,
"created_at"
:
"2012-10-12T17:04:47Z"
,
...
@@ -1664,12 +1665,13 @@ POST /projects/:id/push_rule
...
@@ -1664,12 +1665,13 @@ POST /projects/:id/push_rule
```
```
| Attribute | Type | Required | Description |
| Attribute | Type | Required | Description |
| -------------------------------------- | -------------- | -------- | ----------- |
| --------------------------------------
-------
| -------------- | -------- | ----------- |
|
`id`
| integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
|
`id`
| integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
|
`deny_delete_tag`
**(STARTER)**
| boolean | no | Deny deleting a tag |
|
`deny_delete_tag`
**(STARTER)**
| boolean | no | Deny deleting a tag |
|
`member_check`
**(STARTER)**
| boolean | no | Restrict commits by author (email) to existing GitLab users |
|
`member_check`
**(STARTER)**
| boolean | no | Restrict commits by author (email) to existing GitLab users |
|
`prevent_secrets`
**(STARTER)**
| boolean | no | GitLab will reject any files that are likely to contain secrets |
|
`prevent_secrets`
**(STARTER)**
| boolean | no | GitLab will reject any files that are likely to contain secrets |
|
`commit_message_regex`
**(STARTER)**
| string | no | All commit messages must match this, e.g.
`Fixed \d+\..*`
|
|
`commit_message_regex`
**(STARTER)**
| string | no | All commit messages must match this, e.g.
`Fixed \d+\..*`
|
|
`commit_message_negative_regex`
**(STARTER)**
| string | no | No commit message is allowed to match this, e.g.
`ssh\:\/\/`
|
|
`branch_name_regex`
**(STARTER)**
| string | no | All branch names must match this, e.g.
`(feature|hotfix)\/*`
|
|
`branch_name_regex`
**(STARTER)**
| string | no | All branch names must match this, e.g.
`(feature|hotfix)\/*`
|
|
`author_email_regex`
**(STARTER)**
| string | no | All commit author emails must match this, e.g.
`@my-company.com$`
|
|
`author_email_regex`
**(STARTER)**
| string | no | All commit author emails must match this, e.g.
`@my-company.com$`
|
|
`file_name_regex`
**(STARTER)**
| string | no | All commited filenames must
**not**
match this, e.g.
`(jar|exe)$`
|
|
`file_name_regex`
**(STARTER)**
| string | no | All commited filenames must
**not**
match this, e.g.
`(jar|exe)$`
|
...
@@ -1685,12 +1687,13 @@ PUT /projects/:id/push_rule
...
@@ -1685,12 +1687,13 @@ PUT /projects/:id/push_rule
```
```
| Attribute | Type | Required | Description |
| Attribute | Type | Required | Description |
| -------------------------------------- | -------------- | -------- | ----------- |
| --------------------------------------
-------
| -------------- | -------- | ----------- |
|
`id`
| integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
|
`id`
| integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
|
`deny_delete_tag`
**(STARTER)**
| boolean | no | Deny deleting a tag |
|
`deny_delete_tag`
**(STARTER)**
| boolean | no | Deny deleting a tag |
|
`member_check`
**(STARTER)**
| boolean | no | Restrict commits by author (email) to existing GitLab users |
|
`member_check`
**(STARTER)**
| boolean | no | Restrict commits by author (email) to existing GitLab users |
|
`prevent_secrets`
**(STARTER)**
| boolean | no | GitLab will reject any files that are likely to contain secrets |
|
`prevent_secrets`
**(STARTER)**
| boolean | no | GitLab will reject any files that are likely to contain secrets |
|
`commit_message_regex`
**(STARTER)**
| string | no | All commit messages must match this, e.g.
`Fixed \d+\..*`
|
|
`commit_message_regex`
**(STARTER)**
| string | no | All commit messages must match this, e.g.
`Fixed \d+\..*`
|
|
`commit_message_negative_regex`
**(STARTER)**
| string | no | No commit message is allowed to match this, e.g.
`ssh\:\/\/`
|
|
`branch_name_regex`
**(STARTER)**
| string | no | All branch names must match this, e.g.
`(feature|hotfix)\/*`
|
|
`branch_name_regex`
**(STARTER)**
| string | no | All branch names must match this, e.g.
`(feature|hotfix)\/*`
|
|
`author_email_regex`
**(STARTER)**
| string | no | All commit author emails must match this, e.g.
`@my-company.com$`
|
|
`author_email_regex`
**(STARTER)**
| string | no | All commit author emails must match this, e.g.
`@my-company.com$`
|
|
`file_name_regex`
**(STARTER)**
| string | no | All commited filenames must
**not**
match this, e.g.
`(jar|exe)$`
|
|
`file_name_regex`
**(STARTER)**
| string | no | All commited filenames must
**not**
match this, e.g.
`(jar|exe)$`
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment