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 b9b0cc2 commit 8a706cd
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 6 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
site/content/blog/argocd-carvel-plugin.md
2 changes: 1 addition & 1 deletion site/content/blog/carvel-vcluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ $ kapp deploy -a simple-app -f https://raw.githubusercontent.com/vmware-tanzu/ca

Type in `y` to confirm you would like to deploy the Carvel sample app to the vcluster.

Once the deployment is successful, let's do another sanity check and see what apps exist on the host cluster:
Once the deployment is successful, let's do another confidence check and see what apps exist on the host cluster:

```
$ kapp ls
Expand Down
2 changes: 1 addition & 1 deletion site/content/ytt/docs/develop/how-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ They customize the result by supplying their situation-specific settings for Dat

Let's explore what happens at each step in the pipeline.

As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) :
As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) : <!-- wokeignore:rule=blackbox -->

1. process all the "Data Values Schema" documents (light grey input) — evaluating any templating in them;
2. merge those documents, [in order](lang-ref-ytt-schema.md#multiple-schema-documents), generating a "Data Values Schema" document populated with default values and type information.
Expand Down
2 changes: 1 addition & 1 deletion site/content/ytt/docs/v0.41.0/how-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ They customize the result by supplying their situation-specific settings for Dat

Let's explore what happens at each step in the pipeline.

As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) :
As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) : <!-- wokeignore:rule=blackbox -->

1. process all the "Data Values Schema" documents (light grey input) — evaluating any templating in them;
2. merge those documents, [in order](lang-ref-ytt-schema.md#multiple-schema-documents), generating a "Data Values Schema" document populated with default values and type information.
Expand Down
2 changes: 1 addition & 1 deletion site/content/ytt/docs/v0.42.0/how-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ They customize the result by supplying their situation-specific settings for Dat

Let's explore what happens at each step in the pipeline.

As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) :
As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) : <!-- wokeignore:rule=blackbox -->

1. process all the "Data Values Schema" documents (light grey input) — evaluating any templating in them;
2. merge those documents, [in order](lang-ref-ytt-schema.md#multiple-schema-documents), generating a "Data Values Schema" document populated with default values and type information.
Expand Down
2 changes: 1 addition & 1 deletion site/content/ytt/docs/v0.43.0/how-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ They customize the result by supplying their situation-specific settings for Dat

Let's explore what happens at each step in the pipeline.

As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) :
As the first pipeline step (black box) shows, [above](#the-ytt-pipeline) : <!-- wokeignore:rule=blackbox -->

1. process all the "Data Values Schema" documents (light grey input) — evaluating any templating in them;
2. merge those documents, [in order](lang-ref-ytt-schema.md#multiple-schema-documents), generating a "Data Values Schema" document populated with default values and type information.
Expand Down
2 changes: 1 addition & 1 deletion site/content/ytt/js/deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -6500,7 +6500,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 8a706cd

Please sign in to comment.