From 32ce58932f38d9504666304d98c7f8bdbf5d8ee3 Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Thu, 10 Mar 2022 08:18:49 -0600 Subject: [PATCH] Put back Typos CI (#3753) Was removed in 161be7e7c04c90df128b0194915cdb7455e63897 Signed-off-by: Aaron Raimist --- .github/_typos.toml | 2 ++ .github/workflows/spell-check.yaml | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .github/_typos.toml create mode 100644 .github/workflows/spell-check.yaml diff --git a/.github/_typos.toml b/.github/_typos.toml new file mode 100644 index 000000000..7c107218e --- /dev/null +++ b/.github/_typos.toml @@ -0,0 +1,2 @@ +[default] +check-filename = true diff --git a/.github/workflows/spell-check.yaml b/.github/workflows/spell-check.yaml new file mode 100644 index 000000000..8a040510a --- /dev/null +++ b/.github/workflows/spell-check.yaml @@ -0,0 +1,15 @@ +name: Spell Check +on: [pull_request] + +jobs: + run: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v2 + + - name: Check spelling of proposals + uses: crate-ci/typos@4253c3c3eeb21070d64586855b263ce9bc7224ae + with: + config: ${{github.workspace}}/.github/_typos.toml