From 29360de9c16f3bc962f0c9ed1c752f6d1f24f8b3 Mon Sep 17 00:00:00 2001 From: "updateclibot[bot]" <92153806+updateclibot[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 06:50:25 +0000 Subject: [PATCH] chore(typos): install typos gha action v1.46.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli --- .github/workflows/typos.yaml | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/.github/workflows/typos.yaml b/.github/workflows/typos.yaml index ae2254a7..c18e9c40 100644 --- a/.github/workflows/typos.yaml +++ b/.github/workflows/typos.yaml @@ -1,14 +1,24 @@ -name: Test Typos -on: [pull_request] +name: Spell check with typos + +on: + push: + branches: ["main"] + pull_request: + branches: ["**"] + permissions: {} + jobs: - run: - name: Spell Check with Typos + typos: runs-on: ubuntu-latest permissions: contents: read steps: - - name: Checkout Actions Repository + - name: Checkout repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: Check spelling of file.txt - uses: crate-ci/typos@631208b7aac2daa8b707f55e7331f9112b0e062d # v1.44.0 + with: + persist-credentials: false + + - name: Run typos + uses: crate-ci/typos@aca895bf05aec0cb7dffa6f94495e923224d9f17 # v1.46.2 +