diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index e514914..0f175ff 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -26,13 +26,5 @@ jobs: regexvar=$(sed 's/->.*//g' dictionary_usage.txt | sed 's/$/|/' | tr -d '\n' | sed 's/.$//') echo "$regexvar" echo "regexvar=$regexvar" >> "$GITHUB_OUTPUT" - - - name: Annotate locations with typos - uses: codespell-project/codespell-problem-matcher@v1 - with: - regex: ${{ steps.regexvar.outputs.regexvar }} - - - name: Codespell - uses: codespell-project/actions-codespell@v2 - with: - regex: ${{ steps.regexvar.outputs.regexvar }} + - name: Run codespell + run: codespell tasks/main.yml --regex ${{ steps.regexvar.outputs.regexvar }} -C0