GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation allows users to create a new asset link for a specific release in a GitLab project. It is useful for managing release assets by adding external links associated with a release tag. For example, users can add download links or documentation URLs to a release in their GitLab project.

Use Case Examples

  1. Adding a download link to a release asset in a GitLab project.
  2. Creating a documentation link associated with a specific release tag.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used, default is GitLab API key.
baseUrl Base URL of the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET.
Path Parameters Parameters for the API path including project ID and release tag name.

Output

JSON

  • id - The ID of the created asset link.
  • name - The name of the asset link.
  • url - The URL of the asset link.
  • link_type - The type of the link (e.g., other, runbook).
  • created_at - Timestamp when the asset link was created.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID and tag name are correctly specified; otherwise, the API will return an error.
  • Authentication errors may occur if the GitLab API key is missing or invalid.
  • Check that the request body contains all required fields for creating an asset link as per GitLab API documentation.

Links

Discussion