From c56869483760051599234b820b3cf44de128901f Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 12 Jan 2026 12:00:55 -0800 Subject: [PATCH] Remove temporary feature branch deployment settings Revert to main-only deployment for docs workflow before merging. --- .github/workflows/docs.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 677adade..17ef3c0f 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,8 +2,7 @@ name: Documentation on: push: - # TODO: Remove feat/documentation-site before merging - branches: [main, feat/documentation-site] + branches: [main] paths: - 'docs/**' - 'README.md' @@ -93,8 +92,7 @@ jobs: path: ./site deploy: - # TODO: Change back to main only before merging - if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feat/documentation-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 }}