Skip to content

Commit

Permalink
Merge branch 'update-vale' into test-upate
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 authored Oct 15, 2024
2 parents d5cb699 + 5a68a70 commit 8f40617
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/vale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,15 @@ jobs:
echo "Changed files:"
echo "${{ steps.changed-files.outputs.all_changed_and_modified_files }}"
- name: Run Vale with reviewdog
- name: Run Vale with reviewdog and show detailed annotations
if: ${{ steps.changed-files.outputs.any_changed == 'true' }}
id: vale-lint
uses: errata-ai/vale-action@reviewdog
with:
token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-check
level: warning # Only flag warnings
filter_mode: added # Run on changed lines only
reporter: github-pr-check # Use GitHub PR check reporter for detailed annotations
level: warning # Flag warnings as issues
filter_mode: added # Only analyze changed lines
files: ${{ steps.changed-files.outputs.all_changed_and_modified_files }}
separator: ' '
version: '2.27.0'
continue-on-error: true # Allow this step to fail without failing the entire workflow

0 comments on commit 8f40617

Please sign in to comment.