Skip to content

Commit cea37ce

Browse files
committed
ci(vale): add a pr check workflow for vale
Add a pull request driven workflow for vale. This is based on the upstream action documentation [1]. [1] https://github.com/errata-ai/vale-action Signed-off-by: Randolph Sapp <rs@ti.com>
1 parent 94a7d40 commit cea37ce

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/vale.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: "vale"
3+
4+
on: [pull_request]
5+
6+
jobs:
7+
vale:
8+
name: vale
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Install docutils
16+
run: sudo apt-get install -y docutils
17+
18+
- name: Run vale checks
19+
uses: errata-ai/vale-action@v2.1.1

0 commit comments

Comments
 (0)