mirror of
https://github.com/github/awesome-copilot.git
synced 2026-06-17 13:11:27 +00:00
24 lines
551 B
YAML
24 lines
551 B
YAML
name: Check Spelling
|
|
|
|
on:
|
|
push:
|
|
branches: [staged]
|
|
pull_request:
|
|
branches: [staged]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
|
|
|
- name: Check spelling with codespell
|
|
uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1
|
|
with:
|
|
check_filenames: true
|
|
check_hidden: false
|
|
skip: extensions/arcade-canvas/game/phaser.min.js
|