Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/java/io/kestra/plugin/gitlab/MergeRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Create a GitLab merge request",
description = "Create a new merger request in a GitLab project"
title = "Create a GitLab merge request.",
description = "Create a new merge request in a GitLab project. " +
"You need to provide a valid GitLab project ID and a personal access token with the necessary permissions."
)
@Plugin(examples = {
@Example(
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/io/kestra/plugin/gitlab/issues/Create.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Create a GitLab issue",
description = "Create a new issue in a GitLab project"
title = "Create a GitLab issue.",
description = "Create a new issue in a GitLab project. " +
"You need to provide a valid GitLab project ID and a personal access token with the necessary permissions."
)
@Plugin(examples = {
@Example(
Expand Down
5 changes: 3 additions & 2 deletions src/main/java/io/kestra/plugin/gitlab/issues/Search.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
@Getter
@NoArgsConstructor
@Schema(
title = "Search GitLab issues",
description = "Search for issues in a GitLab project"
title = "Search GitLab issues.",
description = "Search for issues in a GitLab project. " +
"You need to provide a valid GitLab project ID and a personal access token with the necessary permissions."
)
@Plugin(examples = {
@Example(
Expand Down
Loading