From a868cbf5e7f557d63a11789ebe99d0017cb92f9c Mon Sep 17 00:00:00 2001 From: Tarek Ismail Date: Thu, 3 Oct 2024 10:25:46 +0300 Subject: [PATCH] Hardcode the remaining spellcheck parameters --- .github/workflows/documentation-checks.yaml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.github/workflows/documentation-checks.yaml b/.github/workflows/documentation-checks.yaml index e8da63fae1..909adc4438 100644 --- a/.github/workflows/documentation-checks.yaml +++ b/.github/workflows/documentation-checks.yaml @@ -10,21 +10,6 @@ on: required: false type: string default: '3.10' - makefile: - description: 'Name of the Makefile to use (default: "Makefile.sp" if it exists, "Makefile" otherwise)' - required: false - type: string - default: 'use-default' - install-target: - description: 'Target to run to install the tools (default: "install")' - required: false - type: string - default: 'install' - spelling-target: - description: 'Target to run for the spelling check (default: "spelling")' - required: false - type: string - default: 'spelling' woke-target: description: 'Target to run for the inclusive language check (default: "woke")' required: false @@ -78,9 +63,9 @@ jobs: uses: canonical/documentation-workflows/spellcheck@main with: working-directory: doc/sphinx - install-target: ${{ inputs.install-target }} - spelling-target: ${{ inputs.spelling-target }} - makefile: ${{ inputs.makefile }} + install-target: install + spelling-target: spelling + makefile: Makefile - if: ${{ failure() && runner.debug }} name: Setup upterm session