Skip to content

Commit 29e5d3a

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

File tree

5 files changed

+18
-37
lines changed

5 files changed

+18
-37
lines changed

.github/workflows/htmltest.yml

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

.github/workflows/preview-message.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 0 deletions
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)