Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed Jun 21, 2024
1 parent 4b8688a commit f8d4c7d
Show file tree
Hide file tree
Showing 5 changed files with 433 additions and 5 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/dei.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: DEI Checks
# whitelist

Check failure on line 2 in .github/workflows/dei.yml

View workflow job for this annotation

GitHub Actions / Check for inclusive language

`whitelist` may be insensitive, try not to use it (See the following for other alternatives: https://github.com/microsoft/InclusivenessAnalyzer/blob/main/src/data.json)
# master

Check failure on line 3 in .github/workflows/dei.yml

View workflow job for this annotation

GitHub Actions / Check for inclusive language

`master` may be insensitive, use `main`, `primary`, `leader` instead (See the following for other alternatives: https://github.com/microsoft/InclusivenessAnalyzer/blob/main/src/data.json)
# slave

Check failure on line 4 in .github/workflows/dei.yml

View workflow job for this annotation

GitHub Actions / Check for inclusive language

`slave` may be insensitive, use `follower`, `replica`, `standby` instead

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
inclusive_language:
name: Check for inclusive language
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: get-woke/woke-action@v0
with:
fail-on-error: true
# inclusive_language_warnings:
# name: List of non-inclusive language
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 2
# - name: Inclusiveness Analyzer
# uses: microsoft/[email protected]
# with:
# excludeUnchangedFiles: false
#
# inclusive_language:
# name: Check for inclusive language
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 2
# - name: Inclusiveness Analyzer
# uses: microsoft/[email protected]
# with:
# failOnNonInclusiveTerm: true
# excludeUnchangedFiles: false
Loading

0 comments on commit f8d4c7d

Please sign in to comment.