[HACK UPDATE] 066 OpenAI Fundamentals v2.1 Ch0,2,5 changes #935
Workflow file for this run
This file contains 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@c65cd883420fd2eb864698a825fc4162dd94482c | |
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 }} |