mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-30 17:33:50 +08:00
96baf1f174
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/1af3b93b6815bc44a9784bd300feb67ff0d1eeb3...8e8c483db84b4bee98b60c0593521ed34d9990e8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: Codespell
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
# Ignore all other languages except English
|
|
paths-ignore:
|
|
- 'pages.*/*/*'
|
|
- 'contributing-guides/style-guide.*.md'
|
|
- 'package-lock.json'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
|
|
with:
|
|
# Ignore all other languages except English
|
|
files_ignore: |
|
|
pages.*/*/*
|
|
contributing-guides/style-guide.*.md
|
|
package-lock.json
|
|
|
|
- uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # v2.2
|
|
with:
|
|
ignore_words_file: .github/codespell-ignore
|
|
# Exit with 0 regardless of typos.
|
|
only_warn: 1
|
|
# Skip non-English pages
|
|
skip: ./pages.*/*/*.md,./contributing-guides/style-guide.*.md
|
|
# Only check files in the PR
|
|
path: ${{ steps.changed-files.outputs.all_changed_files }}
|