Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TEST - Automated dead link check #2061

Draft
wants to merge 43 commits into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
e4bd4da
added action
dianaolives May 16, 2024
e3cf69f
Update link-check.yml
dianaolives May 16, 2024
2dc5505
change file name
dianaolives May 16, 2024
2a87138
modified action
dianaolives May 16, 2024
c1d64ca
Update link-check.yml
dianaolives May 16, 2024
693687d
Update link-check.yml
dianaolives May 16, 2024
9da2575
updated action
dianaolives May 16, 2024
896ca3d
Update link-check.yml
dianaolives May 16, 2024
412e046
Update link-check.yml
dianaolives May 16, 2024
63ebe5d
Update link-check.yml
dianaolives May 16, 2024
e86b988
update action
dianaolives May 16, 2024
8f3426a
update action
dianaolives May 16, 2024
16cefc9
update
dianaolives May 16, 2024
099d065
check links
dianaolives May 16, 2024
ddd9d9c
update
dianaolives May 16, 2024
2696ce2
Update markdown.links.config.json
dianaolives May 16, 2024
d9e2eae
update file
dianaolives May 16, 2024
3d80b97
Update link-check.yml
dianaolives May 16, 2024
80df76d
Update link-check.yml
dianaolives May 16, 2024
b24b89a
Update link-check.yml
dianaolives May 16, 2024
da643b9
Update link-check.yml
dianaolives May 16, 2024
c9448b0
Update link-check.yml
dianaolives May 16, 2024
86c5055
Update link-check.yml
dianaolives May 16, 2024
57cd386
Update link-check.yml
dianaolives May 16, 2024
89b8b28
Update link-check.yml
dianaolives May 16, 2024
22d9f92
Update link-check.yml
dianaolives May 16, 2024
df2be8f
Update link-check.yml
dianaolives May 16, 2024
23b7114
Update link-check.yml
dianaolives May 16, 2024
129063b
Update link-check.yml
dianaolives May 16, 2024
dc0b956
Update link-check.yml
dianaolives May 16, 2024
fb90446
Update link-check.yml
dianaolives May 16, 2024
2a315c0
Update markdown.links.config.json
dianaolives May 16, 2024
5106178
rename file
dianaolives May 16, 2024
56b0050
renamed file
dianaolives May 16, 2024
cf5a242
Update link-check.yml
dianaolives May 16, 2024
48bcb0c
update action
dianaolives May 16, 2024
e8b7542
changes
dianaolives May 16, 2024
28401a1
Update linkinator.config.json
dianaolives May 16, 2024
3a2bb73
Update link-check.yml
dianaolives May 16, 2024
4d7676a
Update link-check.yml
dianaolives May 16, 2024
9f79a2a
Update link-check.yml
dianaolives May 16, 2024
87095b4
Delete linkinator.config.json
dianaolives May 16, 2024
3286602
Update microservice-sdk-introduction.md
dianaolives May 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
pull_request:
name: link-check
jobs:
linkinator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: JustinBeckwith/[email protected]
with:
paths: "content/microservice-sdk/**-bundle/*.md"
concurrency: 1
markdown: true
19 changes: 19 additions & 0 deletions .github/workflows/markdown.links.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"ignorePatterns": [
{
"pattern": "images/"
}
,{
"pattern": "/#"
}
,{
"pattern": "/^#"
}
],
"replacementPatterns": [
{
"pattern": "^-bundle",
"replacement": ""
},
]
}
Loading