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

Correction of links #90

Merged
merged 35 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
97bf6f1
Add linkcheck for plan md files
CsatariGergely Jan 23, 2024
e6adf7f
Add linkspector config file
CsatariGergely Jan 23, 2024
5bc497c
Add verification for the linkspector config file
CsatariGergely Jan 23, 2024
e1cc928
Ignoring localhost links
CsatariGergely Jan 24, 2024
9518c65
Fixing yaml error
CsatariGergely Jan 24, 2024
20f6244
Add HOSTNAME to ignore list
CsatariGergely Jan 24, 2024
25dcc33
Addig 302 as active status code
CsatariGergely Jan 24, 2024
cd2f753
Ignoring the wiki link :(
CsatariGergely Jan 24, 2024
269eb39
Correction of links
CsatariGergely Jan 24, 2024
a26baf0
Merge branch 'main' into correction-of-links
CsatariGergely Jan 24, 2024
e4f9b03
Change owners (#92)
liamfallon Jan 24, 2024
9629959
Removing unecesary ignore link
CsatariGergely Jan 25, 2024
b4fc452
Fixing broken links in glossary
CsatariGergely Jan 25, 2024
426f5a0
Merge branch 'correction-of-links' of github.com:nokia/nephio-docs in…
CsatariGergely Jan 25, 2024
364bf24
Update openstack documentation (#81)
lapentad Jan 25, 2024
cc244ab
Adding footer with Code of Conduct and Netlify (#83)
CsatariGergely Jan 25, 2024
086fbbc
Add efiacor to approvers section (#94)
efiacor Jan 25, 2024
da41955
Fixing typo in the footer (#96)
CsatariGergely Jan 26, 2024
4be361c
reordering installation guides (#87)
spaitsbence Jan 26, 2024
2d9a3f3
Revert inadvertent check in of file to documentation (#93)
liamfallon Jan 26, 2024
7365ed2
Updating docs for R2 (#85)
arora-sagar Jan 29, 2024
ce39c8b
Update Sandbox R2 documentation (#95)
electrocucaracha Jan 29, 2024
a0d97a8
Update content/en/docs/guides/install-guides/install-on-byoc.md
CsatariGergely Jan 30, 2024
9601101
Fixing relative links
CsatariGergely Jan 30, 2024
b1b2cf3
Merge pull request #91 from nokia/add-linkcheck
tliron Jan 30, 2024
5c06bfd
Remove documentation typos (#98)
electrocucaracha Jan 30, 2024
0635574
Fix exercise links (#99)
liamfallon Jan 30, 2024
60878b4
Adding Controller user's guide (#77)
CsatariGergely Jan 31, 2024
7f42d65
Correction of links
CsatariGergely Jan 24, 2024
c2c1000
Fixing broken links in glossary
CsatariGergely Jan 25, 2024
7392ddf
Update content/en/docs/guides/install-guides/install-on-byoc.md
CsatariGergely Jan 30, 2024
9d1c741
Fixing relative links
CsatariGergely Jan 30, 2024
bd8fb04
Adding a link to the controllers user guide
CsatariGergely Jan 31, 2024
37fd73e
Merge branch 'correction-of-links' of github.com:nokia/nephio-docs in…
CsatariGergely Jan 31, 2024
3b4decd
Fixing links
CsatariGergely Jan 31, 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
23 changes: 23 additions & 0 deletions .github/workflows/check-links-md.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Check links of plain md files"
on:
pull_request:

jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install prerequisites
run: |
curl -fsSL https://deb.nodesource.com/setup_21.x | sudo -E bash - &&\
sudo apt-get install -y nodejs
- name: Install tools
run: |
npm install -g @umbrelladocs/linkspector
- name: Verify linkspector config
run: |
cat .linkspector.yml
- name: run linkspector
run: |
linkspector check -c .linkspector.yml
13 changes: 13 additions & 0 deletions .linkspector.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
dirs:
- .
useGitIgnore: true
aliveStatusCodes:
- 200
- 201
- 204
- 302
- 304
ignorePatterns:
- pattern: "^http://localhost.*$"
- pattern: "^http://HOSTNAME:PORT.*$"

Loading