Skip to content

MXS-6011: Update piddir documentation #24

MXS-6011: Update piddir documentation

MXS-6011: Update piddir documentation #24

Workflow file for this run

name: Check for common misspellings in PR
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
codespell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changes
uses: tj-actions/changed-files@v45
with:
files: |
**.md
**.html
- name: Scan for for common misspellings in text files
if: steps.changes.outputs.any_changed == 'true'
uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
path: ${{ steps.changes.outputs.all_changed_files }}