mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-14 15:30:18 +01:00
bcc3c75c19
Add a check for usage of terms and language that is considered non-inclusive. We are using the woke tool for this with a wordlist that can be found at https://github.com/linux-system-roles/tox-lsr/blob/main/src/tox_lsr/config_files/woke.yml Signed-off-by: Noriko Hosoi <nhosoi@redhat.com>
18 lines
540 B
YAML
18 lines
540 B
YAML
# yamllint disable rule:line-length
|
|
name: Check for non-inclusive language
|
|
on: # yamllint disable-line rule:truthy
|
|
- pull_request
|
|
jobs:
|
|
woke:
|
|
name: woke
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: woke
|
|
uses: get-woke/woke-action@v0
|
|
with:
|
|
woke-args: "-c https://raw.githubusercontent.com/linux-system-roles/tox-lsr/main/src/tox_lsr/config_files/woke.yml"
|
|
# Cause the check to fail on any broke rules
|
|
fail-on-error: true
|