From bc5813e6bae00b324399e49235a8f89855318b25 Mon Sep 17 00:00:00 2001 From: Davin Walker Date: Tue, 22 Jul 2025 13:02:17 -0600 Subject: [PATCH] Clarify artifact keep setting / match existing documentation --- app/views/admin/application_settings/_ci_cd.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/application_settings/_ci_cd.html.haml b/app/views/admin/application_settings/_ci_cd.html.haml index 96642dd18641cc..fa80c7ec3058a4 100644 --- a/app/views/admin/application_settings/_ci_cd.html.haml +++ b/app/views/admin/application_settings/_ci_cd.html.haml @@ -41,7 +41,7 @@ = html_escape(_("Set the default expiration time for job artifacts in all projects. Set to %{code_open}0%{code_close} to never expire artifacts by default. If no unit is written, it defaults to seconds. For example, these are all equivalent: %{code_open}3600%{code_close}, %{code_open}60 minutes%{code_close}, or %{code_open}one hour%{code_close}.")) % { code_open: ''.html_safe, code_close: ''.html_safe } = link_to _('Learn more.'), help_page_path('administration/settings/continuous_integration.md', anchor: 'set-default-artifacts-expiration') .form-group - = f.gitlab_ui_checkbox_component :keep_latest_artifact, s_('AdminSettings|Keep the latest artifacts for all jobs in the latest successful pipelines'), help_text: s_('AdminSettings|The latest artifacts for all jobs in the most recent successful pipelines in each project are stored and do not expire.') + = f.gitlab_ui_checkbox_component :keep_latest_artifact, s_('AdminSettings|Preserve artifacts from the most recent successful pipeline for each Git ref (branch or tag), regardless of their expiration time.') .form-group = f.label :archive_builds_in_human_readable, _('Archive pipelines'), class: 'label-bold' = f.text_field :archive_builds_in_human_readable, class: 'form-control gl-form-input' -- GitLab