mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
Add start_branch to files and commits APIs
This commit is contained in:
@ -69,8 +69,9 @@ POST /projects/:id/repository/commits
|
||||
| Attribute | Type | Required | Description |
|
||||
| --------- | ---- | -------- | ----------- |
|
||||
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
|
||||
| `branch` | string | yes | The name of a branch |
|
||||
| `branch` | string | yes | Name of the branch to commit into. To create a new branch, also provide `start_branch`. |
|
||||
| `commit_message` | string | yes | Commit message |
|
||||
| `start_branch` | string | no | Name of the branch to start the new commit from |
|
||||
| `actions[]` | array | yes | An array of action hashes to commit as a batch. See the next table for what attributes it can take. |
|
||||
| `author_email` | string | no | Specify the commit author's email address |
|
||||
| `author_name` | string | no | Specify the commit author's name |
|
||||
|
@ -76,7 +76,8 @@ Example response:
|
||||
Parameters:
|
||||
|
||||
- `file_path` (required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erb
|
||||
- `branch` (required) - The name of branch
|
||||
- `branch` (required) - Name of the branch
|
||||
- `start_branch` (optional) - Name of the branch to start the new commit from
|
||||
- `encoding` (optional) - Change encoding to 'base64'. Default is text.
|
||||
- `author_email` (optional) - Specify the commit author's email address
|
||||
- `author_name` (optional) - Specify the commit author's name
|
||||
@ -105,7 +106,8 @@ Example response:
|
||||
Parameters:
|
||||
|
||||
- `file_path` (required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erb
|
||||
- `branch` (required) - The name of branch
|
||||
- `branch` (required) - Name of the branch
|
||||
- `start_branch` (optional) - Name of the branch to start the new commit from
|
||||
- `encoding` (optional) - Change encoding to 'base64'. Default is text.
|
||||
- `author_email` (optional) - Specify the commit author's email address
|
||||
- `author_name` (optional) - Specify the commit author's name
|
||||
@ -144,7 +146,8 @@ Example response:
|
||||
Parameters:
|
||||
|
||||
- `file_path` (required) - Url encoded full path to new file. Ex. lib%2Fclass%2Erb
|
||||
- `branch` (required) - The name of branch
|
||||
- `branch` (required) - Name of the branch
|
||||
- `start_branch` (optional) - Name of the branch to start the new commit from
|
||||
- `author_email` (optional) - Specify the commit author's email address
|
||||
- `author_name` (optional) - Specify the commit author's name
|
||||
- `commit_message` (required) - Commit message
|
||||
|
@ -53,16 +53,18 @@ module API
|
||||
detail 'This feature was introduced in GitLab 8.13'
|
||||
end
|
||||
params do
|
||||
requires :branch, type: String, desc: 'The name of branch'
|
||||
requires :branch, type: String, desc: 'Name of the branch to commit into. To create a new branch, also provide `start_branch`.'
|
||||
requires :commit_message, type: String, desc: 'Commit message'
|
||||
requires :actions, type: Array[Hash], desc: 'Actions to perform in commit'
|
||||
optional :start_branch, type: String, desc: 'Name of the branch to start the new commit from'
|
||||
optional :author_email, type: String, desc: 'Author email for commit'
|
||||
optional :author_name, type: String, desc: 'Author name for commit'
|
||||
end
|
||||
post ":id/repository/commits" do
|
||||
authorize! :push_code, user_project
|
||||
|
||||
attrs = declared_params.merge(start_branch: declared_params[:branch], branch_name: declared_params[:branch])
|
||||
attrs[:branch_name] = declared_params.delete(:branch)
|
||||
attrs[:start_branch] ||= attrs[:branch_name]
|
||||
|
||||
result = ::Files::MultiService.new(user_project, current_user, attrs).execute
|
||||
|
||||
|
@ -4,7 +4,7 @@ module API
|
||||
def commit_params(attrs)
|
||||
{
|
||||
file_path: attrs[:file_path],
|
||||
start_branch: attrs[:branch],
|
||||
start_branch: attrs[:start_branch] || attrs[:branch],
|
||||
branch_name: attrs[:branch],
|
||||
commit_message: attrs[:commit_message],
|
||||
file_content: attrs[:content],
|
||||
@ -37,8 +37,9 @@ module API
|
||||
|
||||
params :simple_file_params do
|
||||
requires :file_path, type: String, desc: 'The url encoded path to the file. Ex. lib%2Fclass%2Erb'
|
||||
requires :branch, type: String, desc: 'The name of branch'
|
||||
requires :commit_message, type: String, desc: 'Commit Message'
|
||||
requires :branch, type: String, desc: 'Name of the branch to commit into. To create a new branch, also provide `start_branch`.'
|
||||
requires :commit_message, type: String, desc: 'Commit message'
|
||||
optional :start_branch, type: String, desc: 'Name of the branch to start the new commit from'
|
||||
optional :author_email, type: String, desc: 'The email of the author'
|
||||
optional :author_name, type: String, desc: 'The name of the author'
|
||||
end
|
||||
|
Reference in New Issue
Block a user