-
Notifications
You must be signed in to change notification settings - Fork 9
150 lines (145 loc) · 4.88 KB
/
spelling.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
name: Check Spelling
on:
push:
branches:
- "**"
tags-ignore:
- "**"
pull_request_target:
branches:
- "**"
types:
- 'opened'
- 'reopened'
- 'synchronize'
issue_comment:
types:
- 'created'
jobs:
spelling:
name: Check Spelling
permissions:
contents: read
pull-requests: read
actions: read
security-events: write
outputs:
followup: ${{ steps.spelling.outputs.followup }}
internal_state_directory: ${{ steps.spelling.outputs.internal_state_directory }}
docker_container: ${{ steps.spelling.outputs.docker_container }}
env:
workflow_check_commit_messages: commits
runs-on: ubuntu-latest
if: ${{ contains(github.event_name, 'pull_request') || github.event_name == 'push' }}
concurrency:
group: spelling-${{ github.event.pull_request.number || github.ref }}
# note: If you use only_check_changed_files, you do not want cancel-in-progress
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: ${{ !contains(env.workflow_check_commit_messages, 'commits') && '1' || '0' }}
- name: test-clean
shell: bash
run:
cp -R . ../introspected/;
mv ../introspected .
- name: test-merge
if: ${{ contains(github.event_name, 'pull_request') }}
uses: check-spelling/[email protected]
with:
path: introspected
- name: check-spelling
if: env.MERGE_FAILED != '1'
id: spelling
uses: ./
with:
suppress_push_for_open_pull_request: 1
check_file_names: 1
experimental_path: introspected
spell_check_this: check-spelling/spell-check-this@prerelease
checkout: false
post_comment: 0
use_magic_file: 1
report-timing: 1
experimental_apply_changes_via_bot: 1
use_sarif: ${{ (!github.event.pull_request || (github.event.pull_request.head.repo.full_name == github.repository)) && 1 }}
extra_dictionary_limit: 10
# this repository doesn't use php, but the dictionary has fairly good coverage
extra_dictionaries:
cspell:software-terms/dict/softwareTerms.txt
cspell:php/dict/php.txt
cspell:node/node.txt
cspell:python/src/python/python-lib.txt
check_commit_messages: ${{ env.workflow_check_commit_messages }}
ignore-pattern: '[^\p{Ll}\p{Lm}\p{Lt}\p{Lu}]'
upper-pattern: '[\p{Lu}\p{Lt}\p{Lm}]'
lower-pattern: '[\p{Ll}\p{Lm}]'
not-lower-pattern: '[^\p{Ll}\p{Lm}]'
not-upper-or-lower-pattern: '[^\p{Lu}\p{Lt}\p{Lm}]'
punctuation-pattern: "'"
comment-push:
name: Report (Push)
# If your workflow isn't running on push, you can remove this job
runs-on: ubuntu-latest
needs: spelling
permissions:
contents: write
if: (success() || failure()) && needs.spelling.outputs.followup && github.event_name == 'push'
steps:
- name: checkout
uses: actions/checkout@v4
- name: comment
uses: ./
with:
checkout: false
spell_check_this: check-spelling/spell-check-this@prerelease
task: ${{ needs.spelling.outputs.followup }}
internal_state_directory: ${{ needs.spelling.outputs.docker_container && needs.spelling.outputs.internal_state_directory }}
caller_container: ${{ needs.spelling.outputs.docker_container }}
comment-pr:
name: Report (PR)
# If you workflow isn't running on pull_request*, you can remove this job
runs-on: ubuntu-latest
needs: spelling
permissions:
contents: read
pull-requests: write
if: (success() || failure()) && needs.spelling.outputs.followup && contains(github.event_name, 'pull_request')
steps:
- name: checkout
uses: actions/checkout@v4
- name: comment
uses: ./
with:
checkout: false
spell_check_this: check-spelling/spell-check-this@prerelease
task: ${{ needs.spelling.outputs.followup }}
internal_state_directory: ${{ needs.spelling.outputs.docker_container && needs.spelling.outputs.internal_state_directory }}
caller_container: ${{ needs.spelling.outputs.docker_container }}
experimental_apply_changes_via_bot: 1
update:
name: Update PR
permissions:
contents: write
pull-requests: write
actions: read
runs-on: ubuntu-latest
if: ${{
github.event_name == 'issue_comment' &&
github.event.issue.pull_request &&
contains(github.event.comment.body, '@check-spelling-bot apply')
}}
concurrency:
group: spelling-update-${{ github.event.issue.number }}
cancel-in-progress: false
steps:
- name: checkout
uses: actions/checkout@v4
- name: apply spelling updates
uses: ./
with:
experimental_apply_changes_via_bot: 1
checkout: false
ssh_key: "${{ secrets.CHECK_SPELLING }}"