| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
| |
Add the import inside the function rather than at the top of the file
because otherwise it would introduce a circular dependency.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Support commit status updates. Commit status can be set by a POST to
the appropriate commit URL. The status can be updated by a subsequent
POST to the same URL with the same `name` and `ref`, but different
values for `state`, `description`, etc.
Note: Listing the commit statuses is not yet supported. This is done
through a different path on the server, under the `repository` path.
Example of use from the CLI:
# add a build status to a commit
gitlab project-commit-status create --project-id 2 \
--commit-id a43290c --state success --name ci/jenkins \
--target-url http://server/build/123 \
--description "Jenkins build succeeded"
|
|
|
|
| |
Use this feature in the CLI to avoid an extra API call to the server.
|
| |
|
| |
|
|
|
|
|
|
|
| |
Factorize the code to avoid duplication with the ProjectManager class.
Implement unit tests for the group search.
Original patchh from Daniel Serodio (PR #55).
|
|
|
|
|
|
| |
The existing Gitlab methods are deprecated.
Unit tests have been added.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This changes the 'default' API, using managers is the recommended way to
get/list/create objects. Additional operations will be implemented in
followup patchs.
Old methods are deprecated and will disappear in a while.
|
|
|