GitHub

Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.

Integrate the GitHub API with the PagerDuty API

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

Create Issue with GitHub API on New On-Call Rotation from PagerDuty API
PagerDuty + GitHub
 
Try it
Create Issue with GitHub API on New or Updated Incident from PagerDuty API
PagerDuty + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New On-Call Rotation from PagerDuty API
PagerDuty + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New or Updated Incident from PagerDuty API
PagerDuty + GitHub
 
Try it
Acknowledge Incident with PagerDuty API on New Branch (Instant) from GitHub API
GitHub + PagerDuty
 
Try it
New On-Call Rotation from the PagerDuty API

Emit new event each time a new user rotates onto an on-call rotation

 
Try it
New or Updated Incident from the PagerDuty API

Emit new event each time an incident is created or updated

 
Try it
New Branch (Instant) from the GitHub API

Emit new events when a new branch is created

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator (Instant) from the GitHub API

Emit new events when collaborators are added to a repo

 
Try it
Create Issue with the GitHub API

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

 
Try it
Acknowledge Incident with the PagerDuty API

Acknowledge an incident. See the 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
Find Oncall User with the PagerDuty API

Find the user on call for a specific schedule. See the docs here

 
Try it
Create Branch with the GitHub API

Create a new branch in a Github repo. See docs here

 
Try it

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`,
      },
    })
  },
})

Overview of PagerDuty

PagerDuty's APIs allow you to integrate the powerful incident response
capabilities of PagerDuty with your own custom applications. With PagerDuty's
APIs, you can build applications to optimize your incident response process,
collaborate with teams more effectively, and analyze data from your incident
response process. Here are some examples of what you can do with PagerDuty's
APIs:

  • Create and manage automated incident response workflows
  • Automatically trigger actions based on incident response events
  • Enable communication between PagerDuty and other third party applications
  • Pull data from your previous incident response processes to identify best
    practices
  • Create custom reporting tools and insights into incident response processes
  • Monitor multiple teams and services at once

Connect PagerDuty

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: {
    pagerduty: {
      type: "app",
      app: "pagerduty",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.pagerduty.com/users/me`,
      headers: {
        Authorization: `Bearer ${this.pagerduty.$auth.oauth_access_token}`,
        "Accept": `application/vnd.pagerduty+json;version=2`,
      },
    })
  },
})
Run a Pipedream workflow on PagerDuty on-call rotations
Run a Pipedream workflow on PagerDuty on-call rotations
Run common workflows, or any Node.js code you'd like, each time a new user rotates onto an on-call schedule.