* Pass in a YAML true value as `__bootc_validation: true` using
the --extra-vars option to ensure that `__bootc_validation` is
treated as a boolean and not a string value.
`-e "__bootc_validation: true"`
You can also use JSON format:
`-e '{"__bootc_validation": true}'`
but YAML is simpler in this case.
* Use tox-lsr version 3.11.1
* Ensure the citest bad comment works when the test was cancelled in
addition to the failure case.
* Update contributing.md documentation
* Update number of nodes to use in testing farm, if needed
* remove unnecessary ansible-lint skips
Signed-off-by: Rich Megginson <rmeggins@redhat.com>
21 lines
655 B
YAML
21 lines
655 B
YAML
---
|
|
# yamllint disable rule:line-length
|
|
name: Woke
|
|
on: # yamllint disable-line rule:truthy
|
|
- pull_request
|
|
jobs:
|
|
woke:
|
|
name: Detect non-inclusive language
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Run lsr-woke-action
|
|
# Originally, uses: get-woke/woke-action@v0
|
|
uses: linux-system-roles/lsr-woke-action@main
|
|
with:
|
|
woke-args: "-c https://raw.githubusercontent.com/linux-system-roles/tox-lsr/main/src/tox_lsr/config_files/woke.yml --count-only-error-for-failure"
|
|
# Cause the check to fail on any broke rules
|
|
fail-on-error: true
|