debian-mirror-gitlab/app/views/ci/variables/_content.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
758 B
Text
Raw Normal View History

2021-03-11 19:13:27 +05:30
= _('Variables store information, like passwords and secret keys, that you can use in job scripts.')
2021-09-30 23:02:18 +05:30
= link_to s_('Learn more.'), help_page_path('ci/variables/index'), target: '_blank', rel: 'noopener noreferrer'
2021-03-11 19:13:27 +05:30
%p
= _('Variables can be:')
2020-10-24 23:57:45 +05:30
%ul
%li
2021-03-11 19:13:27 +05:30
= html_escape(_('%{code_open}Protected:%{code_close} Only exposed to protected branches or tags.')) % { code_open: '<code>'.html_safe, code_close: '</code>'.html_safe }
2020-10-24 23:57:45 +05:30
%li
2021-03-11 19:13:27 +05:30
= html_escape(_('%{code_open}Masked:%{code_close} Hidden in job logs. Must match masking requirements.')) % { code_open: '<code>'.html_safe, code_close: '</code>'.html_safe }
2021-09-30 23:02:18 +05:30
= link_to _('Learn more.'), help_page_path('ci/variables/index', anchor: 'mask-a-cicd-variable'), target: '_blank', rel: 'noopener noreferrer'