mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-16 17:19:37 +00:00
9ff422396a
The security scanner complained about this. It is what we do with all other actions.
22 lines
479 B
YAML
22 lines
479 B
YAML
name: Codespell
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
codespell:
|
|
name: Codespell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
|
- uses: codespell-project/actions-codespell@22ff5a2e4b591290baf82d47c9feadac31c65441
|
|
with:
|
|
check_filenames: true
|
|
check_hidden: true
|
|
skip: target,.jj
|
|
ignore_words_list: crate,nd,nD
|