From 503807f17c7cc0bd91edef2f6ee5ea2c00f3cb5a Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Wed, 14 Jan 2026 04:57:02 -0800 Subject: [PATCH] Remove docs-site branch references from docs workflow --- .github/workflows/docs.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 48ba696..8eea173 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,7 +2,7 @@ name: Documentation on: push: - branches: [main, docs-site] # TODO: Remove docs-site before merging + branches: [main] pull_request: workflow_dispatch: @@ -50,8 +50,7 @@ jobs: path: ./site deploy: - # TODO: Remove docs-site condition before merging - if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs-site') && github.event_name != 'pull_request' + if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }}