Skip to content

Commit

Permalink
Merge pull request #957 from yutailang0119/readme
Browse files Browse the repository at this point in the history
Fix usage in README
  • Loading branch information
yutailang0119 committed Aug 22, 2024
2 parents b4ce354 + b8c0157 commit d4c618b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- name: run textlint
id: run-textlint
run: |
echo "TEXTLINT_OUTPUT=$(./node_modules/.bin/textlint 'docs/**/*.md' -f json || true)" >> $GITHUB_OUTPUT
echo "textlint-output=$(./node_modules/.bin/textlint 'docs/**/*.md' -f json || true)" >> "$GITHUB_OUTPUT"
- uses: yutailang0119/action-textlint@v4
with:
textlint-output: ${{ steps.run-textlint.outputs.TEXTLINT_OUTPUT }}
textlint-output: ${{ steps.run-textlint.outputs.textlint-output }}
ignore-warnings: true # Ignore Lint Warnings
continue-on-error: false # If annotations contain error of severity, action-textlint exit 1.
```
Expand Down

0 comments on commit d4c618b

Please sign in to comment.