action github_create_issue { label: "Create issue" description: "Open a new issue in a repository." provider: github method: POST path: "/repos/{owner}/{repo}/issues" scopes: ["repo"] input: @json { { "type": "object", "required": ["owner", "repo", "title"], "additionalProperties": false, "properties": { "owner": { "type": "string" }, "repo": { "type": "string" }, "title": { "type": "string" }, "body": { "type": "string" }, "assignees": { "type": "array", "items": { "type": "string" } }, "labels": { "type": "array", "items": { "type": "string" } }, "milestone": { "type": "integer" } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "integer" }, "number": { "type": "integer" }, "title": { "type": "string" }, "html_url": { "type": "string" } } } } }