From 113a98234fc9a9cdebd988ace1ba638a333ad787 Mon Sep 17 00:00:00 2001 From: Ben Holmes Date: Thu, 28 May 2026 15:59:16 -0400 Subject: [PATCH] docs: remove Demo: Issue triage bot page Video-only walkthrough; setup covered by GitHub Actions quickstart + reference. Remove sidebar entry; redirect dead route to quickstart-github-actions. Co-Authored-By: Oz --- .../integrations/demo-issue-triage-bot.mdx | 29 ------------------- src/sidebar.ts | 1 - vercel.json | 14 +++++++-- 3 files changed, 12 insertions(+), 32 deletions(-) delete mode 100644 src/content/docs/agent-platform/cloud-agents/integrations/demo-issue-triage-bot.mdx diff --git a/src/content/docs/agent-platform/cloud-agents/integrations/demo-issue-triage-bot.mdx b/src/content/docs/agent-platform/cloud-agents/integrations/demo-issue-triage-bot.mdx deleted file mode 100644 index 53d009b1..00000000 --- a/src/content/docs/agent-platform/cloud-agents/integrations/demo-issue-triage-bot.mdx +++ /dev/null @@ -1,29 +0,0 @@ ---- -title: "Demo: Issue Triage Bot" -description: >- - A walkthrough demo showing how to trigger a cloud agent from a GitHub Action - to automatically triage bug reports and create draft pull requests. -sidebar: - label: "Demo: Issue triage bot" ---- -import VideoEmbed from '@components/VideoEmbed.astro'; - - - -:::note -Example repository: [**https://github.com/warpdotdev/warp-agents-demo-github-issue-triage**](https://github.com/warpdotdev/warp-agents-demo-github-issue-triage) -::: - -In this demo, Ben shows how to trigger Warp’s coding agent from a GitHub Action to automate bug report handling as soon as issues hit your repository. - -* The workflow acts like a maintainer-first “front door” for bugs: it evaluates whether a report is actionable, asks for missing details when it isn’t, and escalates directly into a draft pull request when it is - -**The first half focuses on triage.** - -* The agent reads the issue (and optionally your repo’s bug report template) and returns a simple ready/not-ready decision. -* If the report is missing key context like a clear description or reproduction steps, the workflow automatically posts a friendly comment requesting the missing info and applies a “needs info” label for maintainers to track. - -**The second half extends the workflow into investigation + fix.** - -* When a report has sufficient detail, Ben shows the agent investigating the codebase, implementing a fix, adding tests, running verification, and returning a PR-ready summary. -* The GitHub Action then commits the changes and opens a draft PR that follows the repo’s pull request template and links back to the original issue for review. diff --git a/src/sidebar.ts b/src/sidebar.ts index 56c6a105..d6fbfb89 100644 --- a/src/sidebar.ts +++ b/src/sidebar.ts @@ -346,7 +346,6 @@ export const sidebarTopics: StarlightSidebarTopicsUserConfig = [ 'agent-platform/cloud-agents/integrations/bitbucket', 'agent-platform/cloud-agents/integrations/gitlab', { slug: 'agent-platform/cloud-agents/integrations/cloud-providers', label: 'AWS, GCP, and other cloud providers' }, - { slug: 'agent-platform/cloud-agents/integrations/demo-issue-triage-bot', label: 'Demo: Issue triage bot' }, ], }, 'agent-platform/cloud-agents/environments', diff --git a/vercel.json b/vercel.json index 86ca682d..0fa707bc 100644 --- a/vercel.json +++ b/vercel.json @@ -1140,7 +1140,12 @@ }, { "source": "/agent-platform/integrations/github-actions/demo-issue-triage-bot", - "destination": "/agent-platform/cloud-agents/integrations/demo-issue-triage-bot/", + "destination": "/agent-platform/cloud-agents/integrations/quickstart-github-actions/", + "statusCode": 308 + }, + { + "source": "/agent-platform/cloud-agents/integrations/demo-issue-triage-bot", + "destination": "/agent-platform/cloud-agents/integrations/quickstart-github-actions/", "statusCode": 308 }, { @@ -5395,7 +5400,12 @@ }, { "source": "/agent-platform/integrations/github-actions/demo-issue-triage-bot/", - "destination": "/agent-platform/cloud-agents/integrations/demo-issue-triage-bot/", + "destination": "/agent-platform/cloud-agents/integrations/quickstart-github-actions/", + "statusCode": 308 + }, + { + "source": "/agent-platform/cloud-agents/integrations/demo-issue-triage-bot/", + "destination": "/agent-platform/cloud-agents/integrations/quickstart-github-actions/", "statusCode": 308 }, {