summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-12-21 08:33:42 +0900
committerGitHub <[email protected]>2020-12-21 08:33:42 +0900
commit3069299200344705c8f89cb301127165234f91bc (patch)
tree0016a1411ca215ebc6e25deadc505b2598e10984 /.github
parenta65c33c48756aea08d8c6341d65aa4836db5bd4c (diff)
parent01a6cdb882816077e8cbfa39f99e27b72a062d38 (diff)
downloadmruby-3069299200344705c8f89cb301127165234f91bc.tar.gz
mruby-3069299200344705c8f89cb301127165234f91bc.zip
Merge pull request #5237 from shuujii/use-git-ls-files-instead-of-find-to-avoid-including-.git
Use `git ls-files` instead of `find` in `spell-checker.yml` [ci skip]
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/spell-checker.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/spell-checker.yml b/.github/workflows/spell-checker.yml
index 307617c4a..7e86e0198 100644
--- a/.github/workflows/spell-checker.yml
+++ b/.github/workflows/spell-checker.yml
@@ -14,4 +14,4 @@ jobs:
wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: 🌶️ Misspell
run: |
- find . -type f | xargs ./misspell -error
+ git ls-files --empty-directory | xargs ./misspell -error