From b0c8df4aa859307c519a929d2cc1945edf859595 Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Thu, 2 Apr 2026 08:56:59 +0200 Subject: [PATCH 1/2] Remove deprecated include-paths input from docs-build All known callers have been migrated to vale-paths (elastic/elasticsearch#145451, elastic/elastic-agent#13416). --- .github/workflows/docs-build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index 29568fc..b92ef14 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -37,11 +37,6 @@ on: type: string default: '' required: false - include-paths: - description: 'Deprecated: use vale-paths instead. Path patterns for Vale linting (multi-line).' - type: string - default: '' - required: false permissions: contents: read @@ -330,4 +325,4 @@ jobs: uses: elastic/vale-rules/lint@main with: files: ${{ needs.check.outputs.all_changed_files }} - include-paths: ${{ inputs.vale-paths != '' && inputs.vale-paths || inputs.include-paths }} + include-paths: ${{ inputs.vale-paths }} From 9928935302479a950104864c1424bcddfe0071a1 Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Thu, 2 Apr 2026 09:13:18 +0200 Subject: [PATCH 2/2] Use vale-paths input name when calling vale-rules/lint --- .github/workflows/docs-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs-build.yml b/.github/workflows/docs-build.yml index b92ef14..5ae89bd 100644 --- a/.github/workflows/docs-build.yml +++ b/.github/workflows/docs-build.yml @@ -325,4 +325,4 @@ jobs: uses: elastic/vale-rules/lint@main with: files: ${{ needs.check.outputs.all_changed_files }} - include-paths: ${{ inputs.vale-paths }} + vale-paths: ${{ inputs.vale-paths }}