80404b991e
Pin GitHub Actions to full-length commit SHAs Co-authored-by: Dan Fiedler <danfiedler@microsoft.com>
23 lines
452 B
YAML
23 lines
452 B
YAML
name: Spellcheck
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
paths:
|
|
- "**/*"
|
|
jobs:
|
|
spellcheck:
|
|
# skip draft PRs
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
|
|
|
|
- name: Spellcheck
|
|
run: ./scripts/spellcheck.sh
|