Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion .github/workflows/markdown_link_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
- name: Check links
run: |
# Generate default configuration file if it doesn't exist.
if [ ! -f .linkspector.yml ] ; then printf "dirs:\n - ./\nignorePatterns:\n - pattern: '^https://www.gnu.org/licenses.*$'\n" > .linkspector.yml ; fi
# - github.com URL's can lead to rate limiting errors.
# - stsci.edu URL's can lead to connection refused errors.
if [ ! -f .linkspector.yml ] ; then printf "dirs:\n - ./\nignorePatterns:\n - pattern: '^https://www.gnu.org/licenses.*$'\n - pattern: '^https://jwst-docs.stsci.edu/$'\n" > .linkspector.yml ; fi
# Run the check.
linkspector check
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@ This quote highlights the goal of this repository:
[arghwhat](https://news.ycombinator.com/item?id=36354464)

> The problem with DevOps is not really how it is practiced, but how it is named. DevOps is a bucket that a bunch of things are thrown into, and everybody thinks the thing they threw in is DevOps with the others being mislabelled.

## URL's to test the markdown linkchecker action

These URL's have caused trouble with the markdown link checker, and are
therefore included here:

- https://jwst-docs.stsci.edu/
Loading