Smartling translations are completed for commit e99142c6517d6aee9b2ca16195d2ea6d9c4b80e2 from main #2655
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: Style guide check | |
on: | |
pull_request: | |
jobs: | |
vale: | |
name: Run Vale | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.head_ref, 'smartling') && !startsWith(github.head_ref, 'renovate') }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: errata-ai/vale-action@reviewdog | |
with: | |
reporter: github-pr-check | |
files: '["src/content/docs/en"]' | |
filter_mode: diff_context | |
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}} |