From bcb93451d3f58329bf7de1fa30f7153fdfa121b6 Mon Sep 17 00:00:00 2001 From: Martin Donadieu Date: Tue, 11 Nov 2025 15:45:22 +0000 Subject: [PATCH 1/2] docs: add typo check workflow for pull requests --- .github/workflows/typos.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/typos.yml diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 000000000..77692330c --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,16 @@ +name: Typo Check + +on: + pull_request: + types: [opened, synchronize, reopened] + +jobs: + typos: + name: Check for typos + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Check for typos + uses: crate-ci/typos@master From f69322daebf1597ccb7d5b8f1e1743d67c84afa0 Mon Sep 17 00:00:00 2001 From: Martin DONADIEU Date: Wed, 12 Nov 2025 18:33:12 +0000 Subject: [PATCH 2/2] Update typos action to version 1.39.0 fix the version instead of master --- .github/workflows/typos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 77692330c..0b592fb27 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -13,4 +13,4 @@ jobs: uses: actions/checkout@v4 - name: Check for typos - uses: crate-ci/typos@master + uses: crate-ci/typos@v1.39.0