Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add codespell GitHub actions workflow #145

Merged
merged 2 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CodeSpell

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@master
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ v1.1.3
Minor Changes
-------------

- Add the default variables async_timeout_maximum and async_poll_interval which configure the timeout and polling values resepectively for asynchronous task execution. - Setting async/poll values as default vars will allow override timer values based on the end user's particular needs.
- Add the default variables async_timeout_maximum and async_poll_interval which configure the timeout and polling values respectively for asynchronous task execution. - Setting async/poll values as default vars will allow override timer values based on the end user's particular needs.
- Set the default to "disabled" in the selinux_mode default variable - This resolves an issue with a missing Ansible fact for servers where selinux is disabled

Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ releases:
- Fixed os_path is undefined error in upgrade role
minor_changes:
- Add the default variables async_timeout_maximum and async_poll_interval which
configure the timeout and polling values resepectively for asynchronous task
configure the timeout and polling values respectively for asynchronous task
execution. - Setting async/poll values as default vars will allow override
timer values based on the end user's particular needs.
- Set the default to "disabled" in the selinux_mode default variable - This
Expand Down
4 changes: 2 additions & 2 deletions roles/common/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ preupg_return_codes:
fail: true
inhibited: true
26:
msg: You specified a text convertor which is not allowed. Allowed convertors are w3m, lynx and elinks.
msg: You specified a text converter which is not allowed. Allowed converters are w3m, lynx and elinks.
fail: true
inhibited: true
27:
Expand All @@ -54,7 +54,7 @@ preupg_return_codes:
fail: true
inhibited: true
30:
msg: User aborted the assesment.
msg: User aborted the assessment.
fail: true
inhibited: true
127:
Expand Down