Skip to content

[New Hack] 063-Intro To Azure Red Hat OpenShift WhatTheHack #85

[New Hack] 063-Intro To Azure Red Hat OpenShift WhatTheHack

[New Hack] 063-Intro To Azure Red Hat OpenShift WhatTheHack #85

name: Spell Check
on:
pull_request:
types:
- opened
- synchronize
branches: [master]
paths:
- "**.md"
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@17c3e9e98f47ef859502ba3e38be0b8a6a4bddd9
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 }}