From 02d74e0631856c68a3f31c5c768c79567fa20515 Mon Sep 17 00:00:00 2001 From: Garth Braithwaite Date: Tue, 13 Jan 2026 13:36:23 -0700 Subject: [PATCH] fix(workflows): correct deploy-docs push trigger branch name Changed `branches: [$default-branch]` to `branches: [main]` to fix automatic deployment on merge to main. The previous syntax was invalid and prevented the workflow from triggering on direct pushes. --- .github/workflows/deploy-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index ea1573e2..110205a1 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -3,7 +3,7 @@ name: Deploy Docs on: # Runs on pushes targeting the default branch push: - branches: [$default-branch] + branches: [main] # Runs after successful release workflow_run: