Skip to content

Commit cfc23bd

Browse files
committed
reverted the Vale min alert to error and added a job to test a html link cehcker
1 parent deb3656 commit cfc23bd

File tree

5 files changed

+17
-37
lines changed

5 files changed

+17
-37
lines changed

.github/workflows/htmltest.yml

-35
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Check internal links
2+
on: push
3+
jobs:
4+
check_html_links_job:
5+
name: A job to test only internal links
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: check-html-links-action step
10+
id: check-links
11+
uses: modernweb-dev/check-html-links-action@v1
12+
with:
13+
doc-folder: public/

.github/workflows/preview-message.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616
This is an automated message:
1717
1818
You can preview this docs PR at http://${{ github.event.number }}.docs-pr.validatedpatterns.io
19-
Note that they get generated every five minutes, so please wait a bit.
19+
Note that the preview gets generated every five minutes, so please wait a bit.
2020
repo-token: ${{ secrets.DOCS_PR_TOKEN }}

.github/workflows/vale-action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: errata-ai/vale-action@reviewdog
1111
with:
1212
filter_mode: added
13-
vale_flags: "--no-exit --minAlertLevel=suggestion --glob=*.adoc"
13+
vale_flags: "--no-exit --minAlertLevel=error --glob=*.adoc"
1414
reporter: github-pr-review
1515
fail_on_error: false
1616
env:

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ Gemfile.lock
1616
.idea
1717
.vale/styles/AsciiDoc
1818
.vale/styles/RedHat
19+
.htmltest.yml
20+
.github/workflows/htmltest.yml

0 commit comments

Comments
 (0)