Fix a tag issue, enrich the e2e test, this PR created for check the result of pipeline testing, not for merging! #13448
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Action to automate the identification of common misspellings in text files. | |
# https://github.com/codespell-project/actions-codespell | |
# https://github.com/codespell-project/codespell | |
name: codespell | |
on: | |
push: | |
branches: [ master, 'release-**' ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ master, 'release-**' ] | |
permissions: | |
contents: read | |
jobs: | |
codespell: | |
name: Check for spelling errors | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # master | |
with: | |
check_filenames: true | |
skip: ./.git,./.github/workflows/codespell.yaml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum,testdata | |
ignore_words_file: .codespellignore |