File tree Expand file tree Collapse file tree 7 files changed +29
-4
lines changed
Expand file tree Collapse file tree 7 files changed +29
-4
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 3636 RUN_ID=$(gh api "repos/$REPO/actions/workflows/tft.yml/runs?event=issue_comment" \
3737 | jq -r "[.workflow_runs[] | select( .display_title == \"$PR_TITLE\" ) | select( .conclusion == \"failure\" ) | .id][0]")
3838 if [ "$RUN_ID" = "null" ]; then
39- echo "Failed workflow not found, exitting "
39+ echo "Failed workflow not found, exiting "
4040 exit 1
4141 fi
4242 echo "Re-running workflow $RUN_ID"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Copyright (c) 2017 GitHub Inc.
2525
2626"GitHub Pandoc HTML5 Template" is Copyright (c) Tristano Ajmone, 2017-2020,
2727released under the MIT License (MIT); it contains readaptations of substantial
28- portions of the following third party softwares :
28+ portions of the following third party software :
2929
3030(1) "GitHub Markdown CSS", Copyright (c) Sindre Sorhus, MIT License (MIT).
3131(2) "Primer CSS", Copyright (c) 2016 GitHub Inc., MIT License (MIT).
Original file line number Diff line number Diff line change 11# Linux Storage Role
22
3- [](https://github.com/linux-system-roles/storage/actions/workflows/ansible-lint.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/ansible-test.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/codeql.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/markdownlint.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/python-unit-test.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/shellcheck.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/tft.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/tft_citest_bad.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/woke.yml)
3+ [](https://github.com/linux-system-roles/storage/actions/workflows/ansible-lint.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/ansible-test.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/codeql.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/codespell.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/markdownlint.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/python-unit-test.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/shellcheck.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/tft.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/tft_citest_bad.yml) [](https://github.com/linux-system-roles/storage/actions/workflows/woke.yml)
44
55This role allows users to configure local storage with minimal input.
66
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ imports are located at `module_utils/storage_lsr`.
6363### Defaults
6464
6565This is where we define the structure of the vars available to users to specify
66- how they want the storage to be layed out. There are two top-level lists:
66+ how they want the storage to be laid out. There are two top-level lists:
6767` storage_pools ` is a list of pools, which contain volumes, and
6868` storage_volumes ` , which are volumes that are not associated with any pool.
6969Examples of pools include LVM volume groups and disks with partition tables.
You can’t perform that action at this time.
0 commit comments