-
-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (30 loc) · 882 Bytes
/
pyspelling.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
---
name: 'pyspelling'
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- 'main'
workflow_dispatch: {}
permissions:
contents: 'read'
jobs:
pyspelling:
name: 'pyspelling'
runs-on: 'ubuntu-22.04'
permissions:
contents: 'read'
steps:
- name: 'Harden Runner'
uses: 'step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c' # v2.9.0
with:
egress-policy: 'block'
disable-sudo: true
allowed-endpoints: >
github.com:443
- name: 'Checkout the repository'
uses: 'actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332' # v4.1.7
- name: 'Run pyspelling'
uses: 'rojopolis/spellcheck-github-actions@cd079c0f6a24c326cb8a4fa5dc8bbf16227990bd' # 0.40.0
with:
config_path: '.github/spellcheck/spellcheck.yml'
...