From b063519df50e9d43d1f834ea88b7a74c76563406 Mon Sep 17 00:00:00 2001 From: "warp-factories[bot]" <243557089+warp-factories[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 07:01:24 +0000 Subject: [PATCH 1/2] Automated SEO fixes: lengthen Factory automations title Give the factories automations page a unique SEO title while keeping the short sidebar label. Other short-title warnings are intentional allowlisted exceptions. Co-Authored-By: Oz --- src/content/docs/factories/automations.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/factories/automations.mdx b/src/content/docs/factories/automations.mdx index 7b6bfe0e..74b11dd2 100644 --- a/src/content/docs/factories/automations.mdx +++ b/src/content/docs/factories/automations.mdx @@ -1,5 +1,5 @@ --- -title: Automations +title: Factory automations description: >- An automation starts factory runs from a trigger, routes them to an agent, and filters which events start a run. From 6661c2fabec86e1f3d785c45b87e56b5226cfc4b Mon Sep 17 00:00:00 2001 From: Warp Date: Wed, 2 Sep 2026 01:26:56 +0000 Subject: [PATCH 2/2] docs(factories): match automations sidebar label to sibling naming Update the sidebar label for the automations page from 'Automations' to 'Factory automations', matching the 'Factory agents' and 'Factory skills' pages that precede it in the Factory configuration group. Co-Authored-By: Warp --- src/content/docs/factories/automations.mdx | 2 +- src/sidebar.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/factories/automations.mdx b/src/content/docs/factories/automations.mdx index 74b11dd2..ed96e475 100644 --- a/src/content/docs/factories/automations.mdx +++ b/src/content/docs/factories/automations.mdx @@ -4,7 +4,7 @@ description: >- An automation starts factory runs from a trigger, routes them to an agent, and filters which events start a run. sidebar: - label: Automations + label: Factory automations --- An **automation** is a factory resource that starts runs from a trigger and routes them to an agent. Triggers fired by a connected tool also carry filters that decide which events start a run. Every default automation Warp creates when you connect a provider, and every custom one you add, is this same resource. See [`automations//automation.md`](/factories/factory-as-code/#automationsnameautomationmd) for the full schema. diff --git a/src/sidebar.ts b/src/sidebar.ts index 838824cf..bee3bea7 100644 --- a/src/sidebar.ts +++ b/src/sidebar.ts @@ -411,7 +411,7 @@ export const sidebarTopics: StarlightSidebarTopicsUserConfig = [ // Moved from 'Integrations' (was 'Automation filters'): this page is // now the Automations primitive's conceptual home, parallel to Factory // agents and Factory skills, not just a filters reference. - { slug: 'factories/automations', label: 'Automations' }, + { slug: 'factories/automations', label: 'Factory automations' }, { slug: 'factories/factory-as-code', label: 'Definitions as code' }, { slug: 'factories/infrastructure-and-security', label: 'Infrastructure & security' }, ],