Skip to content

Commit aa25e7c

Browse files
authored
Merge pull request #41 from dev-sec/codespell
add spellchecking with codespell
2 parents 3eb322c + f0e387c commit aa25e7c

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/codespell.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Codespell - Spellcheck
3+
4+
on: # yamllint disable-line rule:truthy
5+
push:
6+
branches: [master]
7+
pull_request:
8+
branches: [master]
9+
10+
jobs:
11+
codespell:
12+
uses: "dev-sec/.github/.github/workflows/codespell.yml@main"
13+
with:
14+
ignore_words_list: "aks"

libraries/process_env_var.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ def params
4242
end
4343

4444
def to_s
45-
"Enviroment variables for #{@process}"
45+
"Environment variables for #{@process}"
4646
end
4747
end

0 commit comments

Comments
 (0)