[HACK UPDATE] 068 AI Apps update hack with MCP challenge #1316
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@v4 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@94d97fe3f88298bf8b2f2db6fa2ab150f3c1ab77 | |
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 }} |