From bdc0aaa3477cb1a6119894c4197b9fd60dd4da4b Mon Sep 17 00:00:00 2001 From: tduhamel42 Date: Wed, 29 Oct 2025 17:09:00 +0100 Subject: [PATCH] fix: correct broken documentation links in testing and cli-reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed broken Docusaurus links that were causing CI build failures: - docs/development/testing.md: workflows.md → create-workflow.md - docs/reference/cli-reference.md: workflows.md → create-workflow.md - docs/reference/cli-reference.md: ci-cd.md → cicd-integration.md This resolves the Docusaurus test deployment failure. --- docs/docs/development/testing.md | 2 +- docs/docs/reference/cli-reference.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/development/testing.md b/docs/docs/development/testing.md index c7c896a..65564b9 100644 --- a/docs/docs/development/testing.md +++ b/docs/docs/development/testing.md @@ -507,7 +507,7 @@ pytest -m integration # Only integration tests - [Docker Setup](../how-to/docker-setup.md) - Worker management - [CLI Reference](../reference/cli-reference.md) - CLI commands -- [Workflow Guide](../how-to/workflows.md) - Creating workflows +- [Workflow Guide](../how-to/create-workflow.md) - Creating workflows --- diff --git a/docs/docs/reference/cli-reference.md b/docs/docs/reference/cli-reference.md index 801398c..dd7b4d2 100644 --- a/docs/docs/reference/cli-reference.md +++ b/docs/docs/reference/cli-reference.md @@ -602,8 +602,8 @@ ff worker stop - [Docker Setup](../how-to/docker-setup.md) — Worker management and Docker configuration - [Getting Started](../tutorial/getting-started.md) — Complete setup guide -- [Workflow Guide](../how-to/workflows.md) — Detailed workflow documentation -- [CI/CD Integration](../how-to/ci-cd.md) — CI/CD setup examples +- [Workflow Guide](../how-to/create-workflow.md) — Detailed workflow documentation +- [CI/CD Integration](../how-to/cicd-integration.md) — CI/CD setup examples ---