Skip to content

Commit

Permalink
Fix GitHub Actions paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Sporiff committed Feb 19, 2024
1 parent 4226471 commit 4f8f182
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
args: --max-redirects 10 --exclude-mail --base ${{ steps.waitForVercel.outputs.url }} './src/content/docs/en/**/*.mdx'
args: --max-redirects 10 --exclude-mail --base ${{ steps.waitForVercel.outputs.url }} './src/content/docs/**/*.mdx'
fail: true
check-live-links:
runs-on: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Check for typos
uses: crate-ci/typos@master
with:
files: src/content/docs/en/**/*.mdx
files: src/content/docs/**/*.mdx
env:
# Required, set by GitHub actions automatically:
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#about-the-github_token-secret
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: errata-ai/vale-action@reviewdog
with:
reporter: github-pr-check
files: '["src/content/docs/en"]'
files: '["src/content/docs"]'
fail_on_error: true
filter_mode: diff_context
env:
Expand Down

0 comments on commit 4f8f182

Please sign in to comment.