[New Hack] MongoDB to Azure DocumentDB migration WTH #1528
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Spell Check | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| branches: [master] | |
| paths: | |
| - "**.md" | |
| jobs: | |
| spell-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@7dee1b0c1557f278e5c7dc244927139d78c0e22a | |
| with: | |
| files: | | |
| **/*.md | |
| - uses: ./.github/actions/spell-check | |
| name: WTH Spell Check | |
| with: | |
| spell_check_yaml_path: .github/workflows/spell-check/spellcheck.yml | |
| markdown_base_path: . | |
| changed_files: ${{ steps.changed-files.outputs.all_changed_files }} |