From c762aa1793c2c09cd85375c8a07e7c53ac589b57 Mon Sep 17 00:00:00 2001 From: Tarek Ismail Date: Thu, 3 Oct 2024 10:08:31 +0300 Subject: [PATCH] Remove all steps other than `spelling`, remove required inputs. --- .github/workflows/documentation-checks.yaml | 35 --------------------- 1 file changed, 35 deletions(-) diff --git a/.github/workflows/documentation-checks.yaml b/.github/workflows/documentation-checks.yaml index eea9272d9a..039d757f52 100644 --- a/.github/workflows/documentation-checks.yaml +++ b/.github/workflows/documentation-checks.yaml @@ -5,10 +5,6 @@ on: types: [opened, synchronize, reopened, ready_for_review] workflow_call: inputs: - working-directory: - description: 'Working directory' - required: true - type: string python-version: description: 'Version of the Python interpreter to use (defaults to 3.10)' required: false @@ -86,37 +82,6 @@ jobs: spelling-target: ${{ inputs.spelling-target }} makefile: ${{ inputs.makefile }} - - name: Inclusive Language Check - id: woke-step - if: success() || failure() - uses: canonical/documentation-workflows/inclusive-language@main - with: - working-directory: ${{ inputs.working-directory }} - install-target: ${{ inputs.install-target }} - woke-target: ${{ inputs.woke-target }} - makefile: ${{ inputs.makefile }} - - - name: Link Check - id: linkcheck-step - if: success() || failure() - uses: canonical/documentation-workflows/linkcheck@main - with: - working-directory: ${{ inputs.working-directory }} - install-target: ${{ inputs.install-target }} - linkcheck-target: ${{ inputs.linkcheck-target }} - makefile: ${{ inputs.makefile }} - - - name: Accessibility Check - id: pa11y-step - continue-on-error: true - if: success() || failure() - uses: canonical/documentation-workflows/pa11y@main - with: - working-directory: ${{ inputs.working-directory }} - install-target: ${{ inputs.install-target }} - pa11y-target: ${{ inputs.pa11y-target }} - makefile: ${{ inputs.makefile }} - - if: ${{ failure() && runner.debug }} name: Setup upterm session uses: mxschmitt/action-tmate@v3