fix: add validation for batchKey requiring either body or query param… #9683
Workflow file for this run
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: | |
push: | |
branches: | |
- "**" | |
paths: | |
- "docs/**" | |
- "**.md" | |
- "**.rs" | |
pull_request: | |
branches: [main] | |
types: [opened, reopened, synchronize] | |
paths: | |
- "docs/**" | |
- "**.md" | |
- "**.rs" | |
jobs: | |
check_spelling: | |
name: Check spelling | |
runs-on: blacksmith-4vcpu-ubuntu-2204 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: codespell-project/actions-codespell@v2 | |
with: | |
skip: ".git,*/package.json,*/package-lock.json,*.lock,.github,.vscode,assets, *.snap" | |
ignore_words_file: .codespellignore | |
check_hidden: false |