Skip to content
Snippets Groups Projects
Commit 4d69436d authored by Matthias Reso's avatar Matthias Reso
Browse files

Move scripts folder

parent 3224f022
No related branches found
No related tags found
No related merge requests found
......@@ -19,5 +19,5 @@ done
if [ ! "$sources_arg" ]; then
echo "No files to spellcheck"
else
pyspelling -c scripts/spellcheck_conf/spellcheck.yaml --name Markdown $sources_arg
pyspelling -c .github/scripts/spellcheck_conf/spellcheck.yaml --name Markdown $sources_arg
fi
......@@ -5,8 +5,8 @@ matrix:
d: en_US
dictionary:
wordlists:
- scripts/spellcheck_conf/wordlist.txt
output: scripts/spellcheck_conf/wordlist.dic
- .github/scripts/spellcheck_conf/wordlist.txt
output: .github/scripts/spellcheck_conf/wordlist.dic
encoding: utf-8
pipeline:
- pyspelling.filters.context:
......
......@@ -20,7 +20,7 @@ jobs:
uses: gaurav-nelson/github-action-markdown-link-check@1.0.13
with:
use-verbose-mode: 'yes'
config-file: "scripts/markdown_link_check_config.json"
config-file: ".github/scripts/markdown_link_check_config.json"
- name: Get changed files
id: changed-files
......@@ -56,11 +56,11 @@ jobs:
if [ ! "$sources" ]; then
echo "No files to spellcheck"
else
pyspelling -c $GITHUB_WORKSPACE/scripts/spellcheck_conf/spellcheck.yaml --name Markdown $sources
pyspelling -c $GITHUB_WORKSPACE/.github/scripts/spellcheck_conf/spellcheck.yaml --name Markdown $sources
fi
- name: In the case of misspellings
if: ${{ failure() }}
run: |
echo "Please fix the misspellings. If you are sure about some of them, "
echo "so append those to scripts/spellcheck_conf/wordlist.txt"
echo "so append those to .github/scripts/spellcheck_conf/wordlist.txt"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment