Lighthouse

Lighthouse is a beautifully simple issue tracker changing the way thousands manage their issues.

Integrate the Lighthouse API with the GitHub API

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

Create Issue with GitHub API on New Message Created from Lighthouse API
Lighthouse + GitHub
 
Try it
Create Issue with GitHub API on New Milestone Created from Lighthouse API
Lighthouse + GitHub
 
Try it
Create Issue with GitHub API on New Project Created from Lighthouse API
Lighthouse + GitHub
 
Try it
Create Issue with GitHub API on New Ticket Created from Lighthouse API
Lighthouse + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Message Created from Lighthouse API
Lighthouse + GitHub
 
Try it
New Message Created from the Lighthouse API

Emit new event for each new message created.

 
Try it
New Milestone Created from the Lighthouse API

Emit new event for each new milestone created.

 
Try it
New Project Created from the Lighthouse API

Emit new event for each new project created.

 
Try it
New Ticket Created from the Lighthouse API

Emit new event for each new ticket created.

 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
Create Milestone with the Lighthouse API

Creates a milestone. See docs here

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Create Project with the Lighthouse API

Creates a project. See docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Create Ticket with the Lighthouse API

Creates a ticket. See docs here

 
Try it

Overview of Lighthouse

The Lighthouse API provides a window into the world of SSL/TLS certificates. It lets you monitor and track certificates issued for specific domains, offering invaluable insights for security and compliance. By leveraging this API within Pipedream, you can automate certificate tracking, set up alerts for new certificates, and integrate this data with other services for a comprehensive view of your domain's security posture.

Connect Lighthouse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    lighthouse: {
      type: "app",
      app: "lighthouse",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.lighthouse.$auth.domain}.lighthouseapp.com/profile.json`,
      headers: {
        "X-LighthouseToken": `${this.lighthouse.$auth.api_token}`,
        "Content-type": `application/json`,
      },
    })
  },
})

Overview of GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

Connect GitHub

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})