Skip to content

Commit

Permalink
Add MergedYaml to LintResult
Browse files Browse the repository at this point in the history
  • Loading branch information
svanharmelen authored and gravis committed Sep 1, 2022
1 parent e8f80dd commit 3a8e6a2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ type ValidateService struct {
//
// GitLab API docs: https://docs.gitlab.com/ce/api/lint.html
type LintResult struct {
Status string `json:"status"`
Errors []string `json:"errors"`
Warnings []string `json:"warnings"`
Status string `json:"status"`
Errors []string `json:"errors"`
Warnings []string `json:"warnings"`
MergedYaml string `json:"merged_yaml"`
}

// ProjectLintResult represents the linting results by project.
Expand Down

0 comments on commit 3a8e6a2

Please sign in to comment.