PowerToys/.github/workflows/spelling2.yml

23 lines
667 B
YAML
Raw Normal View History

# spelling.yml is blocked per https://github.com/check-spelling/check-spelling/security/advisories/GHSA-g86g-chm8-7r2p
2020-05-21 11:19:08 +08:00
name: Spell checking
on:
pull_request_target:
2020-05-21 11:19:08 +08:00
push:
jobs:
spelling:
2020-05-21 11:19:08 +08:00
name: Spell checking
runs-on: ubuntu-latest
steps:
- name: checkout-merge
if: "contains(github.event_name, 'pull_request')"
uses: actions/checkout@v2
2020-05-21 11:19:08 +08:00
with:
ref: refs/pull/${{github.event.pull_request.number}}/merge
- name: checkout
if: "!contains(github.event_name, 'pull_request')"
uses: actions/checkout@v2
- uses: check-spelling/check-spelling@v0.0.19
with:
config: .github/actions/spell-check