mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-22 11:00:19 +01:00
65cb76028f
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
651 B
YAML
19 lines
651 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@v4
|
|
|
|
- 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
|