We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e94e51 commit 237ebefCopy full SHA for 237ebef
.github/workflows/htmltest.yml
@@ -28,6 +28,8 @@ jobs:
28
hugo --minify
29
30
- name: Run htmltest
31
+ # Don't fail the build on broken links
32
+ #continue-on-error: true
33
uses: wjdp/htmltest-action@master
34
with:
35
config: .htmltest.yml
.github/workflows/vale-action.yml
@@ -0,0 +1,18 @@
1
+name: Lint with Vale
2
+on: [pull_request]
3
+
4
+jobs:
5
+ vale:
6
+ name: Vale linter
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: errata-ai/vale-action@reviewdog
11
+ with:
12
+ filter_mode: added
13
+ vale_flags: "--no-exit --minAlertLevel=error --glob=*.adoc"
14
+ reporter: github-pr-review
15
+ fail_on_error: false
16
+ env:
17
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
18
+ REVIEWDOG_GITHUB_API_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments