mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
* spelling: sent Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> * Upgrade check-spelling to v0.0.18 Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
23 lines
570 B
YAML
23 lines
570 B
YAML
name: Spell checking
|
|
on:
|
|
pull_request_target:
|
|
push:
|
|
issue_comment:
|
|
|
|
jobs:
|
|
build:
|
|
name: Spell checking
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout-merge
|
|
if: "contains(github.event_name, 'pull_request')"
|
|
uses: actions/checkout@v2.0.0
|
|
with:
|
|
ref: refs/pull/${{github.event.pull_request.number}}/merge
|
|
- name: checkout
|
|
if: "!contains(github.event_name, 'pull_request')"
|
|
uses: actions/checkout@v2.0.0
|
|
- uses: check-spelling/check-spelling@v0.0.18
|
|
with:
|
|
config: .github/actions/spell-check
|