Running ansible-lint action twice to fix bug with found collections. #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Woke - Non-Inclusive Language Detection | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
jobs: | |
woke: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
uses: tj-actions/changed-files@v44 | |
id: changed-files | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run woke | |
uses: get-woke/woke-action@v0 | |
with: | |
# Cause the check to fail on any broke rules | |
fail-on-error: true | |
woke-args: ${{ steps.changed-files.outputs.all_changed_files }} |