fix(deps): update astro monorepo #2624
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check for typos | |
on: | |
pull_request: | |
jobs: | |
typos: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.head_ref, 'smartling') && !startsWith(github.head_ref, 'renovate') }} | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Check for typos | |
uses: crate-ci/typos@master | |
with: | |
files: src/content/docs/en/**/*.md* | |
env: | |
# Required, set by GitHub actions automatically: | |
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |