Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-05-31Introduce source to pipeline entityKamil Trzcinski
2017-03-16Add `requirements: { id: %r{[^/]+} }` for all projects and groups namespaced ↵Rémy Coutable
API routes Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-01Fix updaing commit status with optional attributesGrzegorz Bizon
Passing different optional attributes in case of updating an existing commit status should not create a new commit status with the same name.
2017-02-23Enable Style/WordArrayDouwe Maan
2017-02-14Make it possible to pass coverage value to commit status APIwendy0402
2017-01-18Respond with validation errors in commit status APIGrzegorz Bizon
If validation errors are present, include validation errors in the commit status API payload, instead of depending on state machine errors caused by invalid record.
2016-12-04Use the pagination helper in the APIRobert Schilling
2016-11-24Don't convert data which already is the target typeRobert Schilling
2016-10-20Don't use Hash#slice since it's not supported in Ruby 2.1Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-10-19Grapify the commit status APIRobert Schilling
2016-09-12Fix an error where we were unable to create a CommitStatus for running stateKamil Trzcinski
2016-08-11Reverse ref and sha in args and rename pipeline to pipeline_forLin Jen-Shin
2016-07-20Replace parse_boolean with to_booleanRobert Schilling
2016-07-15Track a user who created a pipelineKamil Trzcinski
2016-06-03Rename all ci_commit[s] in application code to pipeline[s]Kamil Trzcinski
2016-06-03Fix other places where we still use commit attribute of BuildKamil Trzcinski
2016-06-03Use pipelines in context of ProjectKamil Trzcinski
2016-06-02Rename Ci::Commit to Ci::Pipeline and rename some of the ci_commit to pipelineKamil Trzcinski
2016-05-10Fix a few places where autoloading would failRémy Coutable
- Fix naming of API::CommitStatuses - Ensure we use require_dependency instead of require - Ensure the namespace is right in lib/api/api.rb, otherwise, we might require Grape::API::Helpers which defines the `#params` method. This is to avoid requiring a file multiple times and getting an "Already initialized constant" error. Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-04-16Write specs for this featureKamil Trzcinski
2016-04-12Fix specsKamil Trzcinski
2016-04-12Use Ci::Commit as PipelineKamil Trzcinski
2016-03-01Check if commit exists first in commit status APIGrzegorz Bizon
2016-02-29Return empty array when commit has no statuses in APIGrzegorz Bizon
This makes API endpoint for Commit Statuses return empty array instead of 404 when commit exists, but has no statuses. Closes #3080
2016-02-02Make the CI permission model simplerKamil Trzcinski
This MR simplifies CI permission model: - read_build: allows to read a list of builds, artifacts and trace - update_build: allows to cancel and retry builds - create_build: allows to create builds from gitlab-ci.yml (not yet implemented) - admin_build: allows to manage triggers, runners and variables - read_commit_status: allows to read a list of commit statuses (including the overall of builds) - create_commit_status: allows to create a new commit status using API Remove all extra methods to manage permission. Made all controllers to use explicitly the new permissions.
2015-12-11Migrate CI::Project to ProjectKamil Trzcinski
2015-10-12Fix broken testsKamil Trzcinski
2015-10-12Update renderingKamil Trzcinski
2015-10-12Small bug fixesKamil Trzcinski
2015-10-12Add Commit Status documentationKamil Trzcinski
2015-10-12Add author to statusesKamil Trzcinski
2015-10-12Fix commit status POST URLKamil Trzcinski
2015-10-12Implement Commit Status APIKamil Trzcinski