IntegrationsGithubActions
Create GitHub issue
Create an issue in a repository.
issues.create · GitHub · v1
Details
Scopes
repository.issues:write
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
owner | string | Yes | minLength 1 |
repo | string | Yes | minLength 1 |
title | string | Yes | minLength 1 |
body | string | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | integer | Yes | — |
number | integer | Yes | — |
title | string | Yes | — |
html_url | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"owner": {
"type": "string",
"minLength": 1
},
"repo": {
"type": "string",
"minLength": 1
},
"title": {
"type": "string",
"minLength": 1
},
"body": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"title"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "integer"
},
"number": {
"type": "integer"
},
"title": {
"type": "string"
},
"html_url": {
"type": "string"
}
},
"required": [
"id",
"number",
"title"
]
}