RJD-1489 Change detection of front entity on path of NPC #6367
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: Spell check | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
spell-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Run spell-check | |
uses: autowarefoundation/autoware-github-actions/spell-check@v1 | |
with: | |
cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/.cspell.json | |
local-cspell-json: .github/workflows/custom_spell.json | |
dict-packages: | | |
https://github.com/tier4/cspell-dicts | |
incremental-files-only: false |