From b5c94117d1801c7b1418b119b0d47954ebd104ca Mon Sep 17 00:00:00 2001 From: "updateclibot[bot]" <92153806+updateclibot[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 06:33:23 +0000 Subject: [PATCH] chore(typos): install typos gha action v1.45.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 fb8cd65be..53e7f2162 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@cf5f1c29a8ac336af8568821ec41919923b05a83 # v1.45.1 + with: + persist-credentials: false + + - name: Run typos + uses: crate-ci/typos@7c572958218557a3272c2d6719629443b5cc26fd # v1.45.2 +