From bcb93451d3f58329bf7de1fa30f7153fdfa121b6 Mon Sep 17 00:00:00 2001 From: Martin Donadieu Date: Tue, 11 Nov 2025 15:45:22 +0000 Subject: [PATCH 1/4] 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/4] 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 From 803874ba01f3528db2a6065c784cd32e7b99796d Mon Sep 17 00:00:00 2001 From: Martin DONADIEU Date: Sun, 8 Mar 2026 13:07:44 +0100 Subject: [PATCH 3/4] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/typos.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 0b592fb27..5e1666323 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -7,6 +7,8 @@ on: jobs: typos: name: Check for typos + permissions: + contents: read runs-on: ubuntu-latest steps: - name: Checkout code From dc9269592687c58e47b475945aa58168b2cf511e Mon Sep 17 00:00:00 2001 From: Martin DONADIEU Date: Sun, 8 Mar 2026 13:08:56 +0100 Subject: [PATCH 4/4] Update typos.yml --- .github/workflows/typos.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 5e1666323..1d107c821 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -10,6 +10,7 @@ jobs: permissions: contents: read runs-on: ubuntu-latest + timeout-minutes: 30 steps: - name: Checkout code uses: actions/checkout@v4