forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
check-spelling-stub.yml
33 lines (32 loc) · 955 Bytes
/
check-spelling-stub.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: "Check Spelling Stub"
description: "Spell check code and commits"
inputs:
post_comment:
description:
check_extra_dictionaries:
description:
event_aliases:
description:
suppress_push_for_open_pull_request:
description:
largest_file:
description:
quit_without_error:
description:
checkout:
description:
disable_checks:
description:
runs:
using: "composite"
steps:
- uses: CHECK_SPELLING/check-spelling@VERSION
with:
event_aliases: ${{ inputs.event_aliases }}
suppress_push_for_open_pull_request: ${{ inputs.suppress_push_for_open_pull_request }}
checkout: ${{ inputs.checkout }}
post_comment: ${{ inputs.post_comment }}
check_extra_dictionaries: ${{ inputs.check_extra_dictionaries }}
largest_file: ${{ inputs.largest_file }}
quit_without_error: ${{ inputs.quit_without_error }}
disable_checks: ${{ inputs.disable_checks }}