Search GitLab issues.
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.
yaml
type: "io.kestra.plugin.gitlab.issues.search"Examples
Search for issues in a GitLab project using a project access token.
yaml
id: gitlab_search_issues
namespace: company.team
tasks:
  - id: search_issues
    type: io.kestra.plugin.gitlab.issues.Search
    url: https://gitlab.example.com
    token: "{{ secret('GITLAB_TOKEN') }}"
    projectId: "123"
    search: "bug"
    state: "opened"
    labels:
      - bug
      - critical
Properties
projectId *Requiredstring
Project ID
GitLab project ID
token *Requiredstring
Personal Access Token
GitLab Personal Access Token
apiPath string
 Default 
/api/v4/projectsAPI Path
Custom API path for GitLab API endpoints
labels array
 SubType string
Labels to filter by
search string
Search query
state string
 Default 
openedIssue state
opened, closed or all
url string
 Default 
https://gitlab.comGitLab URL
GitLab URL
Outputs
count integer
Number of issues found
issues array
 SubType object
Found issues
statusCode integer
HTTP status code
