[WTH Core] - Automatic generation of Student/Release ZIP file on each push to the master branch #610
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@25ef3926d147cd02fc7e931c1ef50772bbb0d25d | |
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 }} |