Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 14.4 to 41. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v14.4...v41) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
541 B
YAML
20 lines
541 B
YAML
name: Check typos
|
|
on:
|
|
pull_request:
|
|
jobs:
|
|
run:
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions Repository
|
|
uses: actions/checkout@v2
|
|
- name: Get changed files
|
|
id: changed-files
|
|
uses: tj-actions/changed-files@v41
|
|
- name: Check spelling of file.txt
|
|
if: ${{ steps.changed-files.outputs.all_changed_files != '' }}
|
|
uses: crate-ci/typos@master
|
|
with:
|
|
files: ${{ steps.changed-files.outputs.all_changed_files }}
|
|
config: ./.typos.toml
|