From db8ea10c7f2f412e6f9a2f8881b6d14b8ac0b20e Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Sat, 15 Mar 2025 08:59:44 -0700 Subject: [PATCH] chore: removes mdlint workflow --- .github/workflows/mdlint-changed.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/mdlint-changed.yml diff --git a/.github/workflows/mdlint-changed.yml b/.github/workflows/mdlint-changed.yml deleted file mode 100644 index 0a900ba446..0000000000 --- a/.github/workflows/mdlint-changed.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Markdown Lint - -on: - push: - branches: - - main - pull_request: - -jobs: - lint: - name: Markdown Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: tj-actions/changed-files@v35 - id: changed-files - with: - files: 'book/src/**/*.md' - separator: "," - - uses: DavidAnson/markdownlint-cli2-action@v9 - if: steps.changed-files.outputs.any_changed == 'true' - with: - globs: ${{ steps.changed-files.outputs.all_changed_files }} - separator: ","