File tree Expand file tree Collapse file tree 3 files changed +34
-1
lines changed Expand file tree Collapse file tree 3 files changed +34
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Style check
2
+
3
+ on :
4
+ pull_request :
5
+ workflow_dispatch :
6
+
7
+ jobs :
8
+ style-job :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Check out
12
+ uses : actions/checkout@v3
13
+
14
+ # For AsciiDoc users:
15
+ - name : Install Asciidoctor
16
+ run : sudo apt-get install -y asciidoctor
17
+
18
+ - name : Run Vale
19
+ uses : errata-ai/vale-action@reviewdog
20
+ env :
21
+ GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
22
+ with :
23
+ fail_on_error : true
24
+ reporter : github-pr-check
25
+ filter_mode : added
26
+ files : latest/bpg
27
+ continue-on-error : false
28
+
Original file line number Diff line number Diff line change 1
1
{
2
2
"folders" : [
3
3
{
4
- "name" : " 📦 AmazonEKSDocsTachyonPreview " ,
4
+ "name" : " 📦 AmazonEKSBestPracticesDocs " ,
5
5
"path" : " ."
6
6
}
7
7
],
Original file line number Diff line number Diff line change
1
+ extends : existence
2
+ message : " Don't write out 'AWS' literally. Use the variable '{aws}' instead."
3
+ level : error
4
+ raw :
5
+ - \bAWS\p{Z}+[\p{L}\p{N}]+\b
You can’t perform that action at this time.
0 commit comments