Skip to content

chore(deps): Bump peter-evans/create-issue-from-file from 5.0.1 to 6.0.0 #96

chore(deps): Bump peter-evans/create-issue-from-file from 5.0.1 to 6.0.0

chore(deps): Bump peter-evans/create-issue-from-file from 5.0.1 to 6.0.0 #96

Workflow file for this run

name: Spell Check
on:
push:
branches: [ main ]
pull_request:
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Setup Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: '1.23'
- name: List workspace files (debug)
run: ls -la
- name: Install misspell (latest)
run: |
go install github.com/golangci/misspell/cmd/misspell@latest
sudo mv $(go env GOPATH)/bin/misspell /usr/local/bin/
- name: Run misspell on Community
run: |
echo "Running misspell on Markdown files in content/community/ ..."
# Read .wordlist.txt, replace newlines with commas to form a comma-separated ignore list
IGNORE_WORDS=$(tr '\n' ',' < .wordlist.txt | sed 's/,$//')
misspell -i "$IGNORE_WORDS" -error $(find content/community -type f -name "*.md")
- name: Run misspell on Events
run: |
echo "Running misspell on Markdown files in content/events/ ..."
# Read .wordlist.txt, replace newlines with commas to form a comma-separated ignore list
IGNORE_WORDS=$(tr '\n' ',' < .wordlist.txt | sed 's/,$//')
misspell -i "$IGNORE_WORDS" -error $(find content/events -type f -name "*.md")
- name: Run misspell on Documentation
run: |
echo "Running misspell on Markdown files in content/documentation/ ..."
# Read .wordlist.txt, replace newlines with commas to form a comma-separated ignore list
IGNORE_WORDS=$(tr '\n' ',' < .wordlist.txt | sed 's/,$//')
misspell -i "$IGNORE_WORDS" -error $(find content/documentation -type f -name "*.md")
- name: Run misspell on Blog posts
run: |
echo "Running misspell on Markdown files in content/blog/ ..."
# Read .wordlist.txt, replace newlines with commas to form a comma-separated ignore list
IGNORE_WORDS=$(tr '\n' ',' < .wordlist.txt | sed 's/,$//')
misspell -i "$IGNORE_WORDS" -error $(find content/blog -type f -name "*.md")