feat: 発進予告のスキップ設定 #169
This file contains hidden or 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: Check spelling | |
| on: | |
| pull_request: | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Retrieve spell check dictionary | |
| run: | | |
| curl --silent --show-error \ | |
| --output .github/workflows/.cspell.json \ | |
| https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/cspell/.cspell.json | |
| - uses: streetsidesoftware/cspell-action@v1.3.2 | |
| with: | |
| config: ".github/workflows/.cspell.json" |