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

_gitlab_ci_yml.html.haml « viewers « blob « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afde59aa37df7117bec8114ebe10430b7e7603ac (plain)
1
2
3
4
5
6
7
8
9
- if viewer.valid?(project: @project, sha: @commit.sha, user: @current_user)
  = sprite_icon('check')
  = s_('Pipelines|This GitLab CI configuration is valid.')
- else
  = sprite_icon('warning-solid')
  = s_('Pipelines|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/index')