fix: Fix Fix wrong gitlabUrl format in repoUrl input description

Signed-off-by: Sergey Shevchenko <sergeyshevchdevelop@gmail.com>
This commit is contained in:
Sergey Shevchenko
2023-05-17 11:37:51 +03:00
parent 105f7129c3
commit 11e0f62558
3 changed files with 7 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': minor
---
Fix wrong gitlabUrl format in repoUrl input description
@@ -57,6 +57,7 @@ export function createPublishGitlabAction(options: {
repoUrl: {
title: 'Repository Location',
type: 'string',
description: `Accepts the format 'gitlab.com?repo=project_name&owner=group_name' where 'project_name' is the repository name and 'group_name' is a group or username`,
},
repoVisibility: {
title: 'Repository Visibility',
@@ -57,7 +57,7 @@ export const createPublishGitlabMergeRequestAction = (options: {
repoUrl: {
type: 'string',
title: 'Repository Location',
description: `Accepts the format 'gitlab.com/group_name/project_name' where 'project_name' is the repository name and 'group_name' is a group or username`,
description: `Accepts the format 'gitlab.com?repo=project_name&owner=group_name' where 'project_name' is the repository name and 'group_name' is a group or username`,
},
/** @deprecated projectID is passed as query parameters in the repoUrl */
projectid: {