GitHub Platform Agentic Workflow
Browser: Create Issue — GitHub Platform Automation Workflow
Navigate to GitHub new issue form, fill in title and body, and submit
sidebutton install github.com Navigate to GitHub new issue form, fill in title and body, and submit
Workflow Definition
YAML source for the github_browser_create_issue.yaml workflow. This is the complete definition executed by the SideButton MCP server when GitHub Platform agents run this automation.
schema_version: 1
version: "1.0.0"
last_verified: "2026-02-09"
id: github_browser_create_issue
title: "Browser: Create Issue"
description: "Navigate to GitHub new issue form, fill in title and body, and submit"
category:
level: task
domain: engineering
reusable: true
params:
repo: string
title: string
body: string
steps:
- type: browser.navigate
url: "{{env.GITHUB_BROWSER_URL}}/{{repo}}/issues/new"
- type: browser.wait
selector: "#issue_title"
timeout: 10000
- type: browser.type
selector: "#issue_title"
text: "{{title}}"
- type: browser.type
selector: "#issue_body"
text: "{{body}}"
- type: browser.click
selector: "button[type='submit']:has-text('Submit new issue'), .btn-primary"
- type: browser.wait
ms: 2000
- type: browser.snapshot
as: result
How To Run
Install the GitHub Platform knowledge pack into your SideButton agent, then dispatch this workflow by its ID github_browser_create_issue.yaml. Agents invoke it directly via the MCP protocol or through the portal.