From 949bbf146e54790c474d466b1e0400eb919a6e04 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Feb 2026 06:02:31 +0000 Subject: [PATCH 1/2] Initial plan From 1201952413c65fedefa05e0cae325b277d88da8b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Feb 2026 06:08:50 +0000 Subject: [PATCH 2/2] feat(docs): configure Astro Starlight localization with English default and French Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- docs/astro.config.mjs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index fb775044061..b96e4c93ac1 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -56,6 +56,17 @@ export default defineConfig({ starlight({ title: 'GitHub Agentic Workflows', description: 'Write agentic workflows in natural language using markdown files and run them as GitHub Actions workflows.', + defaultLocale: 'root', + locales: { + root: { + label: 'English', + lang: 'en', + }, + fr: { + label: 'Français', + lang: 'fr', + }, + }, favicon: '/favicon.svg', logo: { src: './src/assets/agentic-workflow.svg',