From bf924aa43631469b743308c1aebb7f38cbbd85d4 Mon Sep 17 00:00:00 2001 From: Carlo Minotti <50220438+minottic@users.noreply.github.com> Date: Tue, 9 Dec 2025 15:40:07 +0100 Subject: [PATCH 1/2] feat: add docs_config input for mkdocs action --- .github/actions/mkdocs-pages/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/mkdocs-pages/action.yml b/.github/actions/mkdocs-pages/action.yml index 475091a..57de439 100644 --- a/.github/actions/mkdocs-pages/action.yml +++ b/.github/actions/mkdocs-pages/action.yml @@ -22,6 +22,10 @@ inputs: description: docs folder path. If empty, it checkouts all to a fresh 'docs' type: string default: docs + docs_config: + description: mkdocs config file path + type: string + default: .github/mkdocs/mkdocs.yml runs: using: composite @@ -69,6 +73,6 @@ runs: GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }} GIT_COMMITTER_NAME: ci-bot GIT_COMMITTER_EMAIL: ci-bot@example.com - DOCS_CONFIG: .github/mkdocs/mkdocs.yml + DOCS_CONFIG: ${{ input.docs_config }} TAG: ${{ inputs.TAG }} DOCS_LINK_CHECK: ${{ inputs.DOCS_LINK_CHECK }} From 6046195ade86071901637b7475b5fada96c78029 Mon Sep 17 00:00:00 2001 From: Carlo Minotti <50220438+minottic@users.noreply.github.com> Date: Tue, 9 Dec 2025 15:41:38 +0100 Subject: [PATCH 2/2] Fix typo --- .github/actions/mkdocs-pages/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/mkdocs-pages/action.yml b/.github/actions/mkdocs-pages/action.yml index 57de439..ec20bb1 100644 --- a/.github/actions/mkdocs-pages/action.yml +++ b/.github/actions/mkdocs-pages/action.yml @@ -73,6 +73,6 @@ runs: GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }} GIT_COMMITTER_NAME: ci-bot GIT_COMMITTER_EMAIL: ci-bot@example.com - DOCS_CONFIG: ${{ input.docs_config }} + DOCS_CONFIG: ${{ inputs.docs_config }} TAG: ${{ inputs.TAG }} DOCS_LINK_CHECK: ${{ inputs.DOCS_LINK_CHECK }}