From 6381b62259b3e90cfa024ec8a119c1b333f2161e Mon Sep 17 00:00:00 2001 From: OrcaSlicerBot Date: Mon, 19 Jan 2026 14:23:51 +0000 Subject: [PATCH] Updated Wiki content --- ...indentation.yml => validate_list_indentation.yml} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{validate_checklist_indentation.yml => validate_list_indentation.yml} (91%) diff --git a/.github/workflows/validate_checklist_indentation.yml b/.github/workflows/validate_list_indentation.yml similarity index 91% rename from .github/workflows/validate_checklist_indentation.yml rename to .github/workflows/validate_list_indentation.yml index 1f7ec52..e1504ca 100644 --- a/.github/workflows/validate_checklist_indentation.yml +++ b/.github/workflows/validate_list_indentation.yml @@ -1,4 +1,4 @@ -name: Validate Checklist Indentation +name: Validate List Indentation on: pull_request: @@ -12,7 +12,7 @@ on: workflow_dispatch: jobs: - checklist-indentation: + list-indentation: runs-on: ubuntu-latest permissions: contents: read @@ -22,7 +22,7 @@ jobs: with: fetch-depth: 0 - - name: Validate checklist indentation + - name: Validate list indentation uses: actions/github-script@v8 with: script: | @@ -52,7 +52,7 @@ jobs: } if (!filesToCheck.length) { - core.info('No Markdown files found; skipping checklist validation.'); + core.info('No Markdown files found; skipping list indentation validation.'); return; } @@ -91,7 +91,7 @@ jobs: } if (failures.length) { - let errorMessage = 'Invalid checklist indentation found:\n\n'; + let errorMessage = 'Invalid list indentation found:\n\n'; failures.forEach(failure => { errorMessage += `${failure.filePath}:${failure.line} - Indentation: ${failure.indentation} spaces (must be 0 or a multiple of 4)\n`; errorMessage += ` "${failure.content}"\n\n`; @@ -99,7 +99,7 @@ jobs: core.setFailed(errorMessage); } else { - core.info(`Validated checklist indentation in ${filesToCheck.length} file(s). All valid.`); + core.info(`Validated list indentation in ${filesToCheck.length} file(s). All valid.`); } function collectAllMarkdownFiles(relativeDir) {