mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-13 07:32:20 +00:00
5b2e1cbe07
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.4.0 to 3.5.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](24cb908017...8f4b7f8486
)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
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@8f4b7f84864484a7bf31766abe9204da3cbe65b3
|
|
- uses: codespell-project/actions-codespell@22ff5a2e4b591290baf82d47c9feadac31c65441
|
|
with:
|
|
check_filenames: true
|
|
check_hidden: true
|
|
skip: target,.jj
|
|
ignore_words_list: crate,nd,nD
|