Copy of Create an issue in Github on HTTP request
@tdcsts
code:
data:privatelast updated:5 years ago
today
Build integrations remarkably fast!
You're viewing a public workflow template.
Sign up to customize, add steps, modify code and more.
Join 1,000,000+ developers using the Pipedream platform
steps.
trigger
HTTP API
Deploy to generate unique URL
This workflow runs on Pipedream's servers and is triggered by HTTP / Webhook requests.
steps.
validate_request
auth
to use OAuth tokens and API keys in code via theauths object
code
Write any Node.jscodeand use anynpm package. You can alsoexport datafor use in later steps via return or this.key = 'value', pass input data to your code viaparams, and maintain state across executions with$checkpoint.
async (event, steps) => {
1
2
3
4
5
6
}
7
// validate that an issue title was submitted for the event
if (typeof event.body.title === 'undefined') {
  console.error(`Expected JSON body with { "title": "YOUR-ISSUE-TITLE" }`)
  throw `Issue title is missing`
}
steps.
post_repo_issues
Create an issue. Any user with pull access to a repository can create an issue.
auth
(auths.github)
params
Owner

Name of repository owner.

 
string ·params.owner
Repo

Name of repository.

 
string ·params.repo
Title
{{event.body.title}}
string ·params.title
Optional
code
async (params, auths) => {
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
}
22
const data = {
  assignee: params.assignee,
  body: params.body,
  labels: params.labels,
  milestone: params.milestone,
  title: params.title,
}
try {
  return (await require("axios")({
    method: "post",
    url: `https://api.github.com/repos/${params.owner}/${params.repo}/issues`,
    headers: {
      Authorization: `Bearer ${auths.github.oauth_access_token}`,
    },
    data,
  })).data
} catch (err) {
  this.err = err
  throw err
}