From 6563e77d3a9b0f7546815530c87a9eb60bd0837f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 12:29:05 +0000 Subject: [PATCH] [docs] Add sidebar.order frontmatter to 5 docs pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds explicit sidebar order to docs pages that previously relied on Starlight's default ordering, producing deterministic navigation. Closes #39416 (5 of 6 pages; patterns/spec-ops.md left untouched — that directory's convention is sidebar.badge, not sidebar.order). --- docs/src/content/docs/reference/feature-flags.md | 2 ++ docs/src/content/docs/reference/self-hosted-runners.md | 2 ++ docs/src/content/docs/reference/steps-jobs.md | 2 ++ docs/src/content/docs/reference/wasm-compilation.md | 2 ++ docs/src/content/docs/specs/frontmatter-hash-specification.md | 2 ++ 5 files changed, 10 insertions(+) diff --git a/docs/src/content/docs/reference/feature-flags.md b/docs/src/content/docs/reference/feature-flags.md index 0ee8530327f..01a8ced69eb 100644 --- a/docs/src/content/docs/reference/feature-flags.md +++ b/docs/src/content/docs/reference/feature-flags.md @@ -1,6 +1,8 @@ --- title: Feature Flags description: "Enable experimental or optional compiler and runtime behaviors in GitHub Agentic Workflows using the features: frontmatter field" +sidebar: + order: 670 --- The `features:` frontmatter field enables experimental or optional compiler and runtime behaviors as key-value pairs. diff --git a/docs/src/content/docs/reference/self-hosted-runners.md b/docs/src/content/docs/reference/self-hosted-runners.md index e84234f9878..313647a1351 100644 --- a/docs/src/content/docs/reference/self-hosted-runners.md +++ b/docs/src/content/docs/reference/self-hosted-runners.md @@ -1,6 +1,8 @@ --- title: Self-Hosted Runners description: How to configure and run agentic workflows on self-hosted runners, ARC/Kubernetes, and GHES environments. +sidebar: + order: 810 --- Use the `runs-on` frontmatter field to target a self-hosted runner instead of the default `ubuntu-latest`. diff --git a/docs/src/content/docs/reference/steps-jobs.md b/docs/src/content/docs/reference/steps-jobs.md index 634bee43eca..8ab2c91ba46 100644 --- a/docs/src/content/docs/reference/steps-jobs.md +++ b/docs/src/content/docs/reference/steps-jobs.md @@ -1,6 +1,8 @@ --- title: Custom Steps and Jobs description: "Add deterministic pre-processing steps and custom GitHub Actions jobs to agentic workflows using steps:, pre-agent-steps:, post-steps:, and jobs:" +sidebar: + order: 820 --- Custom steps and jobs let you mix deterministic computation with agentic execution. All custom steps and jobs run **outside the firewall sandbox** with standard GitHub Actions security. diff --git a/docs/src/content/docs/reference/wasm-compilation.md b/docs/src/content/docs/reference/wasm-compilation.md index 23df78d0e20..903cf653ff7 100644 --- a/docs/src/content/docs/reference/wasm-compilation.md +++ b/docs/src/content/docs/reference/wasm-compilation.md @@ -1,6 +1,8 @@ --- title: WebAssembly Compilation description: How to compile the gh-aw workflow compiler to WebAssembly and use it in the browser or other JavaScript environments. +sidebar: + order: 1400 --- :::caution[Experimental] diff --git a/docs/src/content/docs/specs/frontmatter-hash-specification.md b/docs/src/content/docs/specs/frontmatter-hash-specification.md index 9e0984e5d19..831477a5322 100644 --- a/docs/src/content/docs/specs/frontmatter-hash-specification.md +++ b/docs/src/content/docs/specs/frontmatter-hash-specification.md @@ -4,6 +4,8 @@ description: Specification for computing deterministic hashes of agentic workflo version: 1.0.0 status: Draft publication_date: 2026-05-07 +sidebar: + order: 1360 --- # Frontmatter Hash Specification