Skip to content

merge queue: embarking main (b3504b0), #908, #910 and #911 together #2079

merge queue: embarking main (b3504b0), #908, #910 and #911 together

merge queue: embarking main (b3504b0), #908, #910 and #911 together #2079

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
- name: codespell
uses: codespell-project/actions-codespell@master
with:
skip: .git,go.mod,go.sum,vendor,*.svg
ignore_words_list: NotIn
check_filenames: true
check_hidden: true