File tree Expand file tree Collapse file tree 6 files changed +28
-3
lines changed
Expand file tree Collapse file tree 6 files changed +28
-3
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 = .pandoc_template.html5,.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 11
22# Ansible Role: Kernel Crash Dump
33
4- [](https://github.com/linux-system-roles/kdump/actions/workflows/ansible-lint.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/ansible-test.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/markdownlint.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/tft.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/tft_citest_bad.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/woke.yml)
4+ [](https://github.com/linux-system-roles/kdump/actions/workflows/ansible-lint.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/ansible-test.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/codespell.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/markdownlint.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/tft.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/tft_citest_bad.yml) [](https://github.com/linux-system-roles/kdump/actions/workflows/woke.yml)
55
66An ansible role which configures kdump.
77
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ confidence=
5252# can either give multiple identifiers separated by comma (,) or put this
5353# option multiple times (only on the command line, not in the configuration
5454# file where it should appear only once).You can also use "--disable=all" to
55- # disable everything first and then reenable specific checks. For example, if
55+ # disable everything first and then re-enable specific checks. For example, if
5656# you want to run only the similarities checker, you can use "--disable=all
5757# --enable=similarities". If you want to run only the classes checker, but have
5858# no Warning level messages displayed, use"--disable=all --enable=classes
You can’t perform that action at this time.
0 commit comments