From 159424d759a53194e3a7f8f3e852907be5a325e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 20:26:19 +0000 Subject: [PATCH 1/3] Initial plan From a5bfbffb05f16496b0dd079f48979814ac49f0b0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 20:34:39 +0000 Subject: [PATCH 2/3] docs: replace single code block with AstroTabs for workflow prompt examples Add four scenario tabs (Issue Triage, Daily Report, Daily Documentation Updater, Weekly agents.md Maintainer) to the GitHub Web Interface section of the Creating Agentic Workflows page. Each tab contains a concise prompt starting with the standard create.md URL sentence. Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .../content/docs/setup/creating-workflows.mdx | 40 +++++++++++++++---- 1 file changed, 33 insertions(+), 7 deletions(-) diff --git a/docs/src/content/docs/setup/creating-workflows.mdx b/docs/src/content/docs/setup/creating-workflows.mdx index 39560e02cb..fe04073ec4 100644 --- a/docs/src/content/docs/setup/creating-workflows.mdx +++ b/docs/src/content/docs/setup/creating-workflows.mdx @@ -7,6 +7,7 @@ sidebar: import CopyEntireFileButton from '../../../components/CopyEntireFileButton.astro'; import Video from '../../../components/Video.astro'; +import { Tabs, TabItem } from '@astrojs/starlight/components'; **⏱️ Estimated time: 5-15 minutes** depending on complexity @@ -22,13 +23,38 @@ from the Web Interface. This technique is slow and non-interactive but it is incredibly useful to turn an idea to reality in a couple minutes. For a more fine grained, interactive experience we recommend using a coding agent (see next section). -Use this Agent Session task in your repository. - -```markdown wrap -Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md - -The purpose of the workflow is triage issues. -``` +Use one of these prompts in your repository. + + + + ```markdown wrap + Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md + + The purpose of the workflow is to triage new issues: label them by type and priority, identify duplicates, ask clarifying questions when the description is unclear, and assign them to the right team members. + ``` + + + ```markdown wrap + Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md + + The purpose of the workflow is a daily report on recent activity in the repository, delivered as an issue. The report should summarize new issues, pull requests merged, and any open blockers. + ``` + + + ```markdown wrap + Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md + + The purpose of the workflow is to run daily and keep the repository documentation up to date: identify doc files that are out of sync with recent code changes and open a pull request with the necessary updates. + ``` + + + ```markdown wrap + Create a workflow for GitHub Agentic Workflows using https://raw.githubusercontent.com/github/gh-aw/main/create.md + + The purpose of the workflow is to run weekly and maintain the AGENTS.md file: review merged pull requests and updated source files since the last run, then open a pull request that keeps AGENTS.md accurate and current. + ``` + +