From 973dbefabbf73478e9fa5c3f91c35139c2b391a2 Mon Sep 17 00:00:00 2001 From: Tony Date: Thu, 5 Feb 2026 13:01:37 -0600 Subject: [PATCH] test --- .github/workflows/ci-docs.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index ae7c94e..a0e8e40 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -1,10 +1,14 @@ name: CI - Docs build check on: - pull_request: - branches-ignore: - - gh-pages - push: + push: + branches: + - main + - development + - release-candidate + tags-ignore: # Don't need to run on tag pushes. + - "v*" + - "rc*" workflow_dispatch: permissions: @@ -13,6 +17,7 @@ permissions: env: MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT:-true }} MKDOCS_CONFIG: mkdocs/mkdocs.yml + MKDOCS_OFFLINE: false CSPELL_CONFIG: tools/spellcheck/cspell.yml CSPELL_TARGETS: "docs/**/*.md" README.md