Skip to content

Commit 8aaa018

Browse files
committed
Introduce inclusive naming check and update existing language
We are following the Inclusive Naming Initiative's guidance as that is what the CNCF supports.
1 parent 8c154f0 commit 8aaa018

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Check inclusive language
3+
4+
on:
5+
pull_request:
6+
types: ['opened']
7+
8+
jobs:
9+
check-inclusive-language:
10+
name: Check inclusive language
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
with:
15+
fetch-depth: '0'
16+
- name: woke
17+
run: |
18+
curl -sSfL https://git.io/getwoke | bash -s -- -b /usr/local/bin
19+
woke -c https://inclusivenaming.org/word-lists/index.json -o github-actions --exit-1-on-failure

.wokeignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# out of our control
2+
vendor/
3+
cli/examples/package-authoring/redis-enterprise-operator/upstream/crds/rec_crd.yaml

cli/examples/package-authoring/redis-enterprise-operator/upstream/crds/rec_crd.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -6244,11 +6244,11 @@ spec:
62446244
type: object
62456245
type: array
62466246
slaveHA:
6247-
description: Slave high availability mechanism configuration.
6247+
description: Replica high availability mechanism configuration.
62486248
properties:
62496249
slaveHAGracePeriod:
62506250
description: Time in seconds between when a node fails, and when
6251-
slave high availability mechanism starts relocating shards. If
6251+
replica high availability mechanism starts relocating shards. If
62526252
set to 0, will not affect cluster configuration.
62536253
format: int32
62546254
type: integer
@@ -13142,11 +13142,11 @@ spec:
1314213142
type: object
1314313143
type: array
1314413144
slaveHA:
13145-
description: Slave high availability mechanism configuration.
13145+
description: Replica high availability mechanism configuration.
1314613146
properties:
1314713147
slaveHAGracePeriod:
1314813148
description: Time in seconds between when a node fails, and when
13149-
slave high availability mechanism starts relocating shards. If
13149+
replica high availability mechanism starts relocating shards. If
1315013150
set to 0, will not affect cluster configuration.
1315113151
format: int32
1315213152
type: integer

0 commit comments

Comments
 (0)