Skip to content

Commit

Permalink
chore: vale on changed files
Browse files Browse the repository at this point in the history
  • Loading branch information
adityathebe committed Oct 2, 2024
1 parent aaa0332 commit ef9d004
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
name: Vale
on:
push:
pull_request:

jobs:
vale:
name: runner / vale
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45

- name: Echo changed files
run: |
echo "Changed files:"
echo "${{ steps.changed-files.outputs.all_changed_files }}"
- uses: errata-ai/vale-action@reviewdog
with:
files: ${{ steps.changed-files.outputs.all_changed_files }}
reporter: github-check

0 comments on commit ef9d004

Please sign in to comment.