From e3608cc8870db15b8afc1060c8b65c78d58ecc02 Mon Sep 17 00:00:00 2001 From: Himawan Winarto Date: Tue, 2 Jun 2026 16:52:02 -0400 Subject: [PATCH 1/2] fix: add ignored link for linkcheck Signed-off-by: Himawan Winarto --- custom_conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_conf.py b/custom_conf.py index 11f218e..76f35d3 100644 --- a/custom_conf.py +++ b/custom_conf.py @@ -202,7 +202,8 @@ # Add files or directories that should be excluded from processing. custom_excludes = [ 'doc-cheat-sheet*', - ] + 'readme.rst' +] # Add CSS files (located in .sphinx/_static/) custom_html_css_files = [] From 0d9d01ae266658e6e0f6cd5b8266c8b33706f165 Mon Sep 17 00:00:00 2001 From: Himawan Winarto Date: Wed, 3 Jun 2026 15:12:38 -0400 Subject: [PATCH 2/2] fix: disable Sphinx venv rebuild CI when configurations Python files are updated Signed-off-by: Himawan Winarto --- .../sphinx-python-dependency-build-checks.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sphinx-python-dependency-build-checks.yml b/.github/workflows/sphinx-python-dependency-build-checks.yml index b9d6413..48cb921 100644 --- a/.github/workflows/sphinx-python-dependency-build-checks.yml +++ b/.github/workflows/sphinx-python-dependency-build-checks.yml @@ -11,14 +11,14 @@ # succeed. name: Check and document build requirements for Sphinx venv on: - push: - paths: - - 'conf.py' - - 'custom_conf.py' - pull_request: - paths: - - 'conf.py' - - 'custom_conf.py' + # push: + # paths: + # - 'conf.py' + # - 'custom_conf.py' + # pull_request: + # paths: + # - 'conf.py' + # - 'custom_conf.py' workflow_dispatch: @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install dependencies run: |