summaryrefslogtreecommitdiff
path: root/app/views/projects/blob/viewers/_gitlab_ci_yml.html.haml
blob: 3326cded42a87a8db461f6caf10bdd133b0efcfc (plain)
1
2
3
4
5
6
7
8
9
- if viewer.valid?(project: @project, sha: @commit.sha, user: @current_user)
  = sprite_icon('check')
  This GitLab CI configuration is valid.
- else
  = sprite_icon('warning-solid')
  This GitLab CI configuration is invalid:
  = viewer.validation_message(project: @project, sha: @commit.sha, user: @current_user)

= link_to 'Learn more', help_page_path('ci/yaml/README')