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: ","