-
Notifications
You must be signed in to change notification settings - Fork 34
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
Fix Markdown link checking action #196
Fix Markdown link checking action #196
Conversation
…hould now fail Signed-off-by: Paschalis Tsilias <[email protected]>
Signed-off-by: Paschalis Tsilias <[email protected]>
specification.md
Outdated
@@ -3144,14 +3144,14 @@ reduce the number of connections to the Server when a very large number | |||
|
|||
### Configuration Management | |||
|
|||
* [Uber Flipr](https://eng.uber.com/flipr/) | |||
* [Uber Flipr](https://web.archive.org/web/20240223111552/https://www.uber.com/blog/flipr/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The actual link is now https://www.uber.com/blog/flipr/, but hitting the link with cURL results in 406 Not Acceptable
so I opted for the web.archive.org link.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that https://www.uber.com/blog/flipr exists, I'd vote to have an ignore pattern for this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, done in 515ba8a
* Facebook's | ||
[Holistic Configuration Management](https://research.facebook.com/file/877841159827226/holistic-configuration-management-at-facebook.pdf) | ||
(push) | ||
|
||
### Security and Certificate Management | ||
|
||
* [mTLS in Go](https://kofo.dev/how-to-mtls-in-golang) | ||
* [mTLS in Go](https://web.archive.org/web/20240223142649/https://kofo.dev/how-to-mtls-in-golang) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This person's website has gone offline so I replaced this with the link from the Wayback Machine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for figuring this out! See inline comment.
specification.md
Outdated
@@ -3144,14 +3144,14 @@ reduce the number of connections to the Server when a very large number | |||
|
|||
### Configuration Management | |||
|
|||
* [Uber Flipr](https://eng.uber.com/flipr/) | |||
* [Uber Flipr](https://web.archive.org/web/20240223111552/https://www.uber.com/blog/flipr/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that https://www.uber.com/blog/flipr exists, I'd vote to have an ignore pattern for this one.
Signed-off-by: Paschalis Tsilias <[email protected]>
Thank you @tpaschalis |
Fixes #170