Skip to content

Commit ef7488a

Browse files
Merge branch 'master' into issue-414
2 parents f01e6f3 + d0de3a1 commit ef7488a

File tree

4 files changed

+28
-13
lines changed

4 files changed

+28
-13
lines changed

.github/workflows/link-check-cron.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,20 @@ jobs:
1717

1818
# Checks the status of hyperlinks in .md files
1919
- name: Check links
20-
uses: gaurav-nelson/github-action-markdown-link-check@v1
20+
uses: derberg/github-action-markdown-link-check@temporary-fix
2121
with:
2222
use-quiet-mode: 'yes'
2323
use-verbose-mode: 'yes'
24+
25+
# A configuration file can be included, indicating the properties of the link check action
26+
# More information can be found here: https://github.com/tcort/markdown-link-check#config-file-format
27+
# Create mlc_config.json file in the root of the directory
2428

2529
- name: Report workflow run status to Slack
2630
uses: 8398a7/action-slack@v3
2731
with:
28-
status: ${{ job.status }}
29-
fields: repo,message,action,eventName,ref,workflow
32+
status: ${{ job.status }}
33+
fields: repo,action,workflow
3034
env:
31-
SLACK_DOCS_CHANNEL: ${{ secrets.SLACK_DOCS_CHANNEL }}
35+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DOCS_CHANNEL }}
3236
if: failure() # Only, on failure, send a message on the Slack Docs Channel (if there are broken links)

.github/workflows/link-check-pr.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,22 @@ name: Check Markdown links
66
on:
77
pull_request_target:
88
types: [synchronize, ready_for_review, opened, reopened]
9+
paths:
10+
- '**.md'
911

1012
jobs:
1113
External-link-validation-on-PR:
1214
runs-on: ubuntu-latest
1315
steps:
14-
- uses: actions/checkout@v3
16+
- name: Checkout repo
17+
uses: actions/checkout@v3
1518
- name: Check links
16-
uses: gaurav-nelson/github-action-markdown-link-check@v1
19+
uses: derberg/github-action-markdown-link-check@temporary-fix
1720
with:
1821
use-quiet-mode: 'yes'
1922
use-verbose-mode: 'yes'
20-
check-modified-files-only: 'yes' #Only modified files are checked on PRs
23+
check-modified-files-only: 'yes' # Only modified files are checked on PRs
24+
25+
# A configuration file can be included, indicating the properties of the link check action
26+
# More information can be found here: https://github.com/tcort/markdown-link-check#config-file-format
27+
# Create mlc_config.json file in the root of the directory

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@
9494
{
9595
"name": "next-major",
9696
"prerelease": true
97+
},
98+
{
99+
"name": "next-major-spec",
100+
"prerelease": true
97101
}
98102
],
99103
"plugins": [

0 commit comments

Comments
 (0)