Skip to content

Commit

Permalink
Introduce inclusive naming check and update existing language
Browse files Browse the repository at this point in the history
We are following the Inclusive Naming Initiative's guidance as that is what the
CNCF supports.
  • Loading branch information
aaronshurley committed Nov 18, 2022
1 parent 7c8390e commit 40520ae
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/inclusive-language-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Check inclusive language

on:
pull_request:
types: ['opened', 'reopened']

jobs:
check-inclusive-language:
uses: vmware-tanzu/carvel-release-scripts/.github/workflows/inclusive-language-check.yml@main
2 changes: 2 additions & 0 deletions .wokeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# out of our control
vendor/
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: postgresql-dummy1
name: postgresql-sample1
data:
dummy1: ""
sample1: ""
---
apiVersion: v1
kind: ConfigMap
metadata:
name: postgresql-dummy2
name: postgresql-sample2
data:
dummy2: ""
sample2: ""
2 changes: 1 addition & 1 deletion pkg/website/js/deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -6557,7 +6557,7 @@
e.dataTransfer.setData("Text", cm.getSelection());
e.dataTransfer.effectAllowed = "copyMove";

// Use dummy image instead of default browsers image.
// Use placeholder image instead of default browsers image.
// Recent Safari (~6.0.2) have a tendency to segfault when this happens, so we don't do it there.
if (e.dataTransfer.setDragImage && !safari) {
var img = elt("img", null, null, "position: fixed; left: 0; top: 0;");
Expand Down

0 comments on commit 40520ae

Please sign in to comment.