Gitlab

GitLab is the most comprehensive AI-powered DevSecOps Platform.

Integrate the Gitlab API with the Formatting API

Setup the Gitlab API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Gitlab and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with Formatting API on New Commit (Instant) from Gitlab API
Gitlab + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Commit (Instant) from Gitlab API
Gitlab + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Commit (Instant) from Gitlab API
Gitlab + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Commit (Instant) from Gitlab API
Gitlab + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Commit (Instant) from Gitlab API
Gitlab + Formatting
 
Try it
New Commit (Instant) from the Gitlab API

Emit new event when a new commit is pushed to a branch

 
Try it
New Branch (Instant) from the Gitlab API

Emit new event when a new branch is created

 
Try it
New Project from the Gitlab API

Emit new event when a project (i.e. repository) is created

 
Try it
New Audit Event (Instant) from the Gitlab API

Emit new event when a new audit event is created

 
Try it
New Commit Comment (Instant) from the Gitlab API

Emit new event when a commit receives a comment

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
Create Branch with the Gitlab API

Create a new branch in the repository. See the documentation

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of Gitlab

Gitlab API allows developers to access the functionality of Gitlab. With the
Gitlab API, developers can integrate Gitlab with other applications, create
custom applications, or automate tasks.

Some examples of what you can build using the Gitlab API include:

  • Automate tasks such as creating and managing repositories
  • Integrate Gitlab with other applications such as your chat application
  • Create custom applications on top of Gitlab

Connect Gitlab

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})