Does Pipedream Support GitLab Version Control?

This topic was automatically generated from Slack. You can find the original thread here.

does pipedream support gitlab version control

Yes, Pipedream supports GitLab for version control. You can integrate GitLab with Pipedream to automate workflows and interact with the GitLab API. To use GitLab on Pipedream, you can create components that interact with the GitLab API. Here’s an example Pipedream component that makes a test request to the GitLab API: ```
import { axios } from “@pipedream/platform”; export default defineComponent({ props: { gitlab: { type: “app”, app: “gitlab”, }, }, async run({ steps, $ }) { return await axios($, { url: https://${this.gitlab.$auth.base_api_url}/api/v4/user, headers: { Authorization: Bearer ${this.gitlab.$auth.oauth_access_token}, }, }); }, });

no mean i need to enable gitlab sync instead of github sync for a project

Unfortunately not, only GitHub at the moment

You can submit a feature request in our repo so we can log it and prioritize it when best