refactor: enhance workflow names and descriptions for clarity #58497
Workflow file for this run
This file contains hidden or 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
name: 'π€ Spell Check' | |
on: | |
push: | |
branches: [master, v0.1, v0.2] | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
codespell: | |
name: 'Check for Spelling Errors' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'π Checkout Code' | |
uses: actions/checkout@v4 | |
- name: 'π¦ Install Dependencies' | |
run: | | |
pip install toml | |
- name: 'π Extract Ignore Words List' | |
run: | | |
# Use a Python script to extract the ignore words list from pyproject.toml | |
python .github/workflows/extract_ignored_words_list.py | |
id: extract_ignore_words | |
# - name: Codespell | |
# uses: codespell-project/actions-codespell@v2 | |
# with: | |
# skip: guide_imports.json,*.ambr,./cookbook/data/imdb_top_1000.csv,*.lock | |
# ignore_words_list: ${{ steps.extract_ignore_words.outputs.ignore_words_list }} | |
# exclude_file: ./.github/workflows/codespell-exclude |