Skip to content

Update CHANGELOG.md for #32462 #9

Update CHANGELOG.md for #32462

Update CHANGELOG.md for #32462 #9

name: CHANGELOG Misspell
on:
push:
branches:
- main
- 'release/**'
pull_request:
paths:
- .changelog/*
- go.sum
- CHANGELOG.md
jobs:
misspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9
- uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
with:
go-version-file: go.mod
- uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: cd .ci/tools && go install github.com/client9/misspell/cmd/misspell
- run: misspell -error -source text CHANGELOG.md .changelog