From 792612b46dfb036d9c183fa1349f5f43bbabf32c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Sep=C3=BAlveda?= Date: Mon, 10 Jun 2024 17:13:49 -0400 Subject: [PATCH] Update gitlab.examples.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit documentation fix. The correct name is `protect`. `protected` is use for variables. Signed-off-by: CĂ©sar SepĂșlveda --- .../src/actions/gitlab.examples.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.examples.ts b/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.examples.ts index 9746bfabe2..f7a957c32e 100644 --- a/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.examples.ts +++ b/plugins/scaffolder-backend-module-gitlab/src/actions/gitlab.examples.ts @@ -121,12 +121,12 @@ export const examples: TemplateExample[] = [ { name: 'dev', create: true, - protected: true, + protect: true, ref: 'master', }, { name: 'master', - protected: true, + protect: true, }, ], },