From 1c86927681b1a602d6a2ed5f2abc7b95d7667d3a Mon Sep 17 00:00:00 2001 From: Pravin Dahal Date: Thu, 10 Jul 2025 13:25:59 +0200 Subject: [PATCH] fix: correct glob for file extensions --- .github/workflows/techdocs.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/techdocs.yaml b/.github/workflows/techdocs.yaml index be6fa22..91a8d21 100644 --- a/.github/workflows/techdocs.yaml +++ b/.github/workflows/techdocs.yaml @@ -67,10 +67,10 @@ jobs: - "${{ inputs.docs_dir }}**/*.png" - "${{ inputs.docs_dir }}**/*.svg" - "${{ inputs.docs_dir }}**/.pages" - - "${{ inputs.docs_dir }}**/.tf" - - "${{ inputs.docs_dir }}**/.go" - - "${{ inputs.docs_dir }}**/.py" - - "${{ inputs.docs_dir }}**/.yaml" + - "${{ inputs.docs_dir }}**/*.tf" + - "${{ inputs.docs_dir }}**/*.go" + - "${{ inputs.docs_dir }}**/*.py" + - "${{ inputs.docs_dir }}**/*.yaml" - .vale/** markdown: - added|modified: "${{ inputs.docs_dir }}**/*.md"