← Linear (API key) + PostgreSQL integrations

Execute SQL Query with PostgreSQL API on New Created Issue (Instant) from Linear (API key) API

Pipedream makes it easy to connect APIs for PostgreSQL, Linear (API key) and 2,700+ other apps remarkably fast.

Trigger workflow on
New Created Issue (Instant) from the Linear (API key) API
Next, do this
Execute SQL Query with the PostgreSQL API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Linear (API key) trigger and PostgreSQL action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Created Issue (Instant) trigger
    1. Connect your Linear (API key) account
    2. Select one or more Team IDs
    3. Optional- Select a Project
    4. Optional- Configure Limit
  3. Configure the Execute SQL Query action
    1. Connect your PostgreSQL account
    2. Configure PostgreSQL Query
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a new issue is created. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)
Version:0.3.10
Key:linear_app-issue-created-instant

Linear (API key) Overview

Linear helps streamline software project management, bug tracking, and task coordination. By using the Linear (API key) API with Pipedream, you can automate routine tasks, sync issues across platforms, and trigger custom workflows. Think auto-assignment of tasks based on specific triggers or pushing updates to a Slack channel when an issue's status changes. These automations save time and ensure that your development team stays focused on coding rather than on administrative overhead.

Trigger Code

import common from "../common/webhook.mjs";
import constants from "../../common/constants.mjs";

export default {
  ...common,
  key: "linear_app-issue-created-instant",
  name: "New Created Issue (Instant)",
  description: "Emit new event when a new issue is created. [See the documentation](https://developers.linear.app/docs/graphql/webhooks)",
  type: "source",
  version: "0.3.10",
  dedupe: "unique",
  methods: {
    ...common.methods,
    getResourceTypes() {
      return [
        constants.RESOURCE_TYPE.ISSUE,
      ];
    },
    getWebhookLabel() {
      return "Issue created";
    },
    getResourcesFn() {
      return this.linearApp.listIssues;
    },
    getResourcesFnArgs() {
      return {
        orderBy: "createdAt",
        filter: {
          team: {
            id: {
              in: this.teamIds,
            },
          },
          project: {
            id: {
              eq: this.projectId,
            },
          },
        },
      };
    },
    isRelevant(body) {
      return body?.action === "create";
    },
    getResource(issue) {
      return this.linearApp.getIssue({
        issueId: issue.id,
      });
    },
    getMetadata(resource) {
      const {
        delivery,
        title,
        data,
        createdAt,
      } = resource;
      return {
        id: delivery || resource.id,
        summary: `Issue created: ${data?.title || title}`,
        ts: Date.parse(createdAt),
      };
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Linear (API key)linearAppappThis component uses the Linear (API key) app.
Team IDsteamIdsstring[]Select a value from the drop down menu.
ProjectprojectIdstringSelect a value from the drop down menu.
Limitlimitinteger

Maximum number of items to return when polling. Defaults to 20 if not specified.

N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.

Trigger Authentication

Linear (API key) uses API keys for authentication. When you connect your Linear (API key) account, Pipedream securely stores the keys so you can easily authenticate to Linear (API key) APIs in both code and no-code steps.

About Linear (API key)

Linear helps streamline software projects, sprints, tasks, and bug tracking. It's built for high-performance teams.

Action

Description:Execute a custom PostgreSQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.
Version:3.0.4
Key:postgresql-execute-custom-query

PostgreSQL Overview

On Pipedream, you can leverage the PostgreSQL app to create workflows that automate database operations, synchronize data across platforms, and react to database events in real-time. Think handling new row entries, updating records from webhooks, or even compiling reports on a set schedule. Pipedream's serverless platform provides a powerful way to connect PostgreSQL with a variety of apps, enabling you to create tailored automation that fits your specific needs.

Action Code

import postgresql from "../../postgresql.app.mjs";

export default {
  name: "Execute SQL Query",
  key: "postgresql-execute-custom-query",
  description: "Execute a custom PostgreSQL query. See [our docs](https://pipedream.com/docs/databases/working-with-sql) to learn more about working with SQL in Pipedream.",
  version: "3.0.4",
  type: "action",
  props: {
    postgresql,
    // eslint-disable-next-line pipedream/props-description
    sql: {
      type: "sql",
      auth: {
        app: "postgresql",
      },
      label: "PostgreSQL Query",
    },
  },
  async run({ $ }) {
    const args = this.postgresql.executeQueryAdapter(this.sql);
    const data = await this.postgresql.executeQuery(args);
    $.export("$summary", `Returned ${data.length} ${data.length === 1
      ? "row"
      : "rows"}`);
    return data;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
PostgreSQLpostgresqlappThis component uses the PostgreSQL app.
PostgreSQL Querysqlsql

Action Authentication

PostgreSQL uses API keys for authentication. When you connect your PostgreSQL account, Pipedream securely stores the keys so you can easily authenticate to PostgreSQL APIs in both code and no-code steps.

Connecting to Restricted Databases

Either enable the shared static IP for this account below, or configure a VPC to deploy any workflow in your workspace to a private network with a dedicated static IP. Learn more in our docs

SSL Setup

Configure SSL on your PostgreSQL database by providing the CA (Certificate Authority), and choosing between Full Verification, Verify Certificate Authority (CA), or Skip Verification. Skipping verification is not recommended as this has serious security implications

About PostgreSQL

PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.

More Ways to Connect PostgreSQL + Linear (API key)

Execute Custom Query with PostgreSQL API on Issue Updated (Instant) from Linear (API key) API
Linear (API key) + PostgreSQL
 
Try it
Delete Row(s) with PostgreSQL API on Issue Created (Instant) from Linear (API key) API
Linear (API key) + PostgreSQL
 
Try it
Find Row with PostgreSQL API on Issue Created (Instant) from Linear (API key) API
Linear (API key) + PostgreSQL
 
Try it
Delete Row(s) with PostgreSQL API on Issue Updated (Instant) from Linear (API key) API
Linear (API key) + PostgreSQL
 
Try it
Find Row with PostgreSQL API on Issue Updated (Instant) from Linear (API key) API
Linear (API key) + PostgreSQL
 
Try it
New Created Comment (Instant) from the Linear (API key) API

Emit new event when a new comment is created. See the documentation

 
Try it
New Created Issue (Instant) from the Linear (API key) API

Emit new event when a new issue is created. See the documentation

 
Try it
New Issue Status Updated (Instant) from the Linear (API key) API

Emit new event when the status of an issue is updated. See the documentation

 
Try it
New Project Update Written (Instant) from the Linear (API key) API

Project updates are short status reports on the health of your projects. Emit new event when a new Project Update is written. See the documentation

 
Try it
New Updated Issue (Instant) from the Linear (API key) API

Emit new event when an issue is updated. See the documentation

 
Try it
Create Issue with the Linear (API key) API

Create an issue (API Key). See the docs here

 
Try it
Get Issue with the Linear (API key) API

Get an issue by ID (API Key). See the docs here

 
Try it
Get Teams with the Linear (API key) API

Get all the teams (API Key). See the docs here

 
Try it
Search Issues with the Linear (API key) API

Search issues (API Key). See the docs here

 
Try it
Update Issue with the Linear (API key) API

Update an issue (API Key). See the docs here

 
Try it

Explore Other Apps

1
-
0
of
2,700+
apps by most popular