Create
yaml
type: "io.kestra.plugin.gitlab.issues.create"
Examples
yaml
id: gitlab_create_issue
namespace: company.team
tasks:
- id: create_issue
type: io.kestra.plugin.gitlab.issues.Create
url: https://gitlab.example.com
token: "{{ secret('GITLAB_TOKEN') }}"
projectId: "123"
title: "Bug report"
issueDescription: "Found a critical bug"
labels:
- bug
- critical
yaml
id: gitlab_create_issue_custom
namespace: company.team
tasks:
- id: create_issue
type: io.kestra.plugin.gitlab.issues.Create
url: https://gitlab.example.com
apiPath: /api/v4/projects
token: "{{ secret('GITLAB_TOKEN') }}"
projectId: "123"
title: "Bug report"
issueDescription: "Found a critical bug"
Properties
projectId *Requiredstring
title *Requiredstring
token *Requiredstring
apiPath string
Default
/api/v4/projects
issueDescription string
labels array
SubType string
url string
Default
https://gitlab.com