GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation updates the Drone CI integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/drone-ci`. It is useful for automating the configuration of CI/CD integrations within GitLab groups, enabling streamlined continuous integration workflows.

Use Case Examples

  1. Updating Drone CI integration settings for a GitLab group identified by its ID.
  2. Automating CI/CD pipeline setup by modifying integration parameters programmatically.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API request.
Authentication Specifies the authentication method to use, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance, defaulting to https://gitlab.com.
Method HTTP method to use for the request, defaulting to PUT for this operation.
Path Parameters Parameters included in the request path, specifically the group ID to identify which group's Drone CI integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Drone CI integration.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the API key used has sufficient permissions to update group integrations.
  • Check the request body schema matches the expected structure for the Drone CI integration update to avoid validation errors.

Links

Discussion