From 0116c08d3862d1490e54cda87ab0e647e587ba22 Mon Sep 17 00:00:00 2001 From: blam Date: Tue, 12 Nov 2024 13:44:44 -0700 Subject: [PATCH] chore: fixing prettier Signed-off-by: blam --- .../src/actions/gitlab.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.ts b/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.ts index 722e4acad4..957ac0aaf7 100644 --- a/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.ts +++ b/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.ts @@ -204,17 +204,20 @@ export function createPublishGitlabAction(options: { }, only_allow_merge_if_all_discussions_are_resolved: { title: 'All threads must be resolved', - description: 'Set whether merge requests can only be merged when all the discussions are resolved.', + description: + 'Set whether merge requests can only be merged when all the discussions are resolved.', type: 'boolean', }, only_allow_merge_if_pipeline_succeeds: { title: 'Pipelines must succeed', - description: 'Set whether merge requests can only be merged with successful pipelines. This setting is named Pipelines must succeed in the project settings.', + description: + 'Set whether merge requests can only be merged with successful pipelines. This setting is named Pipelines must succeed in the project settings.', type: 'boolean', }, allow_merge_on_skipped_pipeline: { title: 'Skipped pipelines are considered successful', - description: 'Set whether or not merge requests can be merged with skipped jobs.', + description: + 'Set whether or not merge requests can be merged with skipped jobs.', type: 'boolean', }, },