From ba218778c76543c539a8c82e423c950ba4c5b590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Colombaro?= Date: Sun, 17 May 2026 23:25:49 +0200 Subject: [PATCH] Add an option to use Super Linter fixers --- .github/workflows/lint.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ea98fa8..63ac1b6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,6 +16,11 @@ on: default: "" type: string description: Regex filter of path to exclude + fix: + required: false + default: false + type: boolean + description: Fix linting and formatting issues permissions: contents: read @@ -42,3 +47,12 @@ jobs: VALIDATE_JSCPD: false VALIDATE_BIOME_FORMAT: false VALIDATE_GITHUB_ACTIONS_ZIZMOR: false + FIX_CSS: ${{ inputs.fix }} + FIX_JSON: ${{ inputs.fix }} + FIX_JSONC: ${{ inputs.fix }} + FIX_MARKDOWN: ${{ inputs.fix }} + FIX_NATURAL_LANGUAGE: ${{ inputs.fix }} + FIX_TSX: ${{ inputs.fix }} + FIX_JAVASCRIPT_PRETTIER: ${{ inputs.fix }} + FIX_TYPESCRIPT_PRETTIER: ${{ inputs.fix }} + FIX_YAML_PRETTIER: ${{ inputs.fix }}