d13a165eda
- fix potential code injection in `issue-slash-commands.yaml` by using single quotes insted of double, see https://www.gnu.org/software/bash/manual/html_node/Double-Quotes.html - declare permissions for all workflows, see https://codeql.github.com/codeql-query-help/actions/actions-missing-workflow-permissions Signed-off-by: Adam Perkowski <adas1per@protonmail.com>
19 lines
315 B
YAML
19 lines
315 B
YAML
name: Check for typos
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
[push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
check-typos:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: git fetch origin ${{ github.base_ref }}
|
|
|
|
- name: Run spellcheck
|
|
uses: crate-ci/typos@v1.26.0
|