Skip to content
Snippets Groups Projects
Commit b63d20a1 authored by Katarzyna Kobierska's avatar Katarzyna Kobierska
Browse files

Add Documentation to Ci Lint API

parent 0d81fd05
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -41,8 +41,10 @@ following locations:
- [Sidekiq metrics](sidekiq_metrics.md)
- [System Hooks](system_hooks.md)
- [Tags](tags.md)
- [Users](users.md)
- [Todos](todos.md)
- [Users](users.md)
- [Validate the .gitlab-ci.yaml](ci_lint.md)
 
### Internal CI API
 
Loading
Loading
# Validate the .gitlab-ci.yaml
Check whether your .gitlab-ci.yml file is valid.
```
POST ci/lint
```
| Attribute | Type | Required | Description |
| ---------- | ------- | -------- | -------- |
| `content` | hash | yes | the .gitlab-ci.yaml content|
```bash
curl --request POST "https://gitlab.example.com/api/v3/ci/lint?content=YAML+Content"
```
Example response:
* valid content
```json
{
"status": "valid",
"errors": []
}
```
* invalid content
```json
{
"status": "invalid",
"errors": [
"variables config should be a hash of key value pairs"
]
}
```
* without the content attribute
```json
{
"error": "content is missing"
}
```
Loading
Loading
@@ -7,14 +7,14 @@ module API
 
namespace :ci do
post '/lint' do
errors = Ci::GitlabCiYamlProcessor.validation_message(params[:content])
error = Ci::GitlabCiYamlProcessor.validation_message(params[:content])
 
status 200
 
if errors.blank?
if error.blank?
{ status: 'valid', errors: [] }
else
{ status: 'invalid', errors: [errors] }
{ status: 'invalid', errors: [error] }
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment