Skip to content

merge queue: embarking main (d586f5a) and #1017 together #2307

merge queue: embarking main (d586f5a) and #1017 together

merge queue: embarking main (d586f5a) and #1017 together #2307

Workflow file for this run

---
# codespell is a GitHub Actions that runs codespell tool to catch misspell
# Reference https://github.com/codespell-project/actions-codespell
name: Codespell
# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- '*'
jobs:
codespell:
name: codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6.0.2
- name: codespell
uses: codespell-project/actions-codespell@master
with:
skip: .git,go.mod,go.sum,vendor,*.svg
ignore_words_list: NotIn,AfterAll
check_filenames: true
check_hidden: true