BitBucket

Bitbucket Cloud is a Git-based code and CI/CD tool optimized for teams using Jira.

Integrate the BitBucket API with the Filter API

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

Continue execution if a condition Is met with Filter API on New Commit (Instant) from BitBucket API
BitBucket + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Pull Request (Instant) from BitBucket API
BitBucket + Filter
 
Try it
End execution if a condition is met with Filter API on New Commit (Instant) from BitBucket API
BitBucket + Filter
 
Try it
End execution if a condition is met with Filter API on New Pull Request (Instant) from BitBucket API
BitBucket + Filter
 
Try it
Continue execution if a condition Is met with Filter API on New Branch (Instant) from BitBucket API
BitBucket + Filter
 
Try it
New Commit (Instant) from the BitBucket API

Emit new event when a new commit is pushed to a branch. See docs here

 
Try it
New Pull Request (Instant) from the BitBucket API

Emit new event when a new pull request is created in a repository. See docs here

 
Try it
New Branch (Instant) from the BitBucket API

Emit new event when a new branch is created. See docs here

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

Emit new event when a commit receives a comment. See docs here

 
Try it
New Event from any Repository from the BitBucket API

Emit new event when an event occurs from any repository belonging to the user. See docs here

 
Try it
Continue execution if a condition Is met with the Filter API

Continue workflow execution only if a condition is met

 
Try it
End execution if a condition is met with the Filter API

End workflow execution if a condition is met

 
Try it
Create Issue Comment with the BitBucket API

Creates a new issue comment. See docs here

 
Try it
Create Snippet Comment with the BitBucket API

Creates a new snippet comment. See docs here

 
Try it
Creates a new issue with the BitBucket API

Creates a new issue. See docs here

 
Try it

Overview of BitBucket

The BitBucket API taps the potential of BitBucket's Git-based version control system, enabling you to automate workflows around code commits, pull requests, and overall repository management. With this API, you can streamline the collaboration process, enforce coding standards, or integrate with other tools to create a cohesive development ecosystem. Pipedream, as a serverless integration and compute platform, provides a seamless environment to connect BitBucket with various apps and services, enabling you to harness its API for efficient, customized automations.

Connect BitBucket

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: {
    bitbucket: {
      type: "app",
      app: "bitbucket",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.bitbucket.org/2.0/user`,
      headers: {
        Authorization: `Bearer ${this.bitbucket.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Filter

The Filter API in Pipedream allows for real-time data processing within workflows. It's designed to evaluate data against predefined conditions, enabling workflows to branch or perform specific actions based on those conditions. This API is instrumental in creating efficient, targeted automations that respond dynamically to diverse datasets. Using the Filter API, you can refine streams of data, ensuring that subsequent steps in your Pipedream workflow only execute when the data meets your specified criteria. This cuts down on unnecessary processing and facilitates the creation of more intelligent, context-aware systems.

Connect Filter

1
2
3
4
5
6
7
8
9
10
export default defineComponent({
  async run({ steps, $ }) {
    let condition = false
    if (condition == false) {
      $.flow.exit("Ending workflow early because the condition is false")
    } else {
        $.export("$summary", "Continuing workflow, since condition for ending was not met.")
    }
  },
})