File tree Expand file tree Collapse file tree 5 files changed +53
-1
lines changed
Expand file tree Collapse file tree 5 files changed +53
-1
lines changed Original file line number Diff line number Diff line change 1+ [codespell]
2+ check-hidden = true
3+ # Note that `-w` doesn't work when ignore-multiline-regex is set
4+ # https://github.com/codespell-project/codespell/issues/3642
5+ ignore-multiline-regex = codespell:ignore-begin.*codespell:ignore-end
6+ ignore-words = .codespell_ignores
7+ # skip-file is not available https://github.com/codespell-project/codespell/pull/2759
8+ skip = .README.html
Original file line number Diff line number Diff line change 1+ # Codespell configuration is within .codespellrc
2+ ---
3+ name : Codespell
4+ on : # yamllint disable-line rule:truthy
5+ - pull_request
6+ permissions :
7+ contents : read
8+ jobs :
9+ codespell :
10+ name : Check for spelling errors
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v4
15+
16+ - name : Codespell
17+ uses : codespell-project/actions-codespell@v2
Original file line number Diff line number Diff line change 1+ # Codespell configuration is within .codespellrc
2+ ---
3+ name : Detect non-inclusive language
4+ on : # yamllint disable-line rule:truthy
5+ - pull_request
6+ permissions :
7+ contents : read
8+ jobs :
9+ codespell :
10+ name : Detect non-inclusive language
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v4
15+
16+ - name : Get variable with regex values
17+ id : regexvar
18+ run : |
19+ curl -L -s -o dictionary_usage.txt https://raw.githubusercontent.com/codespell-project/codespell/refs/heads/main/codespell_lib/data/dictionary_usage.txt
20+ regexvar=$(sed 's/->.*//g' dictionary_usage.txt | sed 's/$/|/' | tr -d '\n' | sed 's/.$//')
21+ rm dictionary_usage.txt
22+ echo "regex = $regexvar" >> .codespellrc
23+
24+ - name : Detect non-inclusive language with codespell
25+ uses : codespell-project/actions-codespell@v2
26+ with :
27+ builtin : usage
Original file line number Diff line number Diff line change 11# PostgreSQL system role
22
3- [](https://github.com/linux-system-roles/postgresql/actions/workflows/ansible-lint.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/ansible-test.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/markdownlint.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/tft.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/tft_citest_bad.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/woke.yml)
3+ [](https://github.com/linux-system-roles/postgresql/actions/workflows/ansible-lint.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/ansible-test.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/codespell.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/detect_non_inclusive_language.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/markdownlint.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/tft.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/tft_citest_bad.yml) [](https://github.com/linux-system-roles/postgresql/actions/workflows/woke.yml)
44
55The PostgreSQL system role installs, configures, and starts the PostgreSQL
66server.
You can’t perform that action at this time.
0 commit comments