Authentication

This provider requires authentication.
  • access_token: GitLab Access Token (required: True, sensitive: True)

In workflows

This provider can be used in workflows. As “step” to query data, example:
steps:
    - name: Query gitlabpipelines
      provider: gitlabpipelines
      config: "{{ provider.my_provider_name }}"
      with:
        url: {value}  
        method: {value}  
As “action” to make changes or update data, example:
actions:
    - name: Query gitlabpipelines
      provider: gitlabpipelines
      config: "{{ provider.my_provider_name }}"
      with:
        gitlab_url: {value}  
        gitlab_method: {value}  
If you need workflow examples with this provider, please raise a GitHub issue.

Connecting with the Provider

Create your personal access token in gitlab
  • On the left sidebar, select your avatar.
  • Select Edit profile.
  • On the left sidebar, select Access Tokens.
  • Select Add new token.
  • Enter a name and expiry date for the token.
  • Select the desired scopes.
  • Select Create personal access token.