-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'current' into joellabes-patch-1
- Loading branch information
Showing
358 changed files
with
12,532 additions
and
2,918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
### | ||
### Display | ||
### | ||
|
||
# Verbose program output | ||
# Accepts log level: "error", "warn", "info", "debug", "trace" | ||
verbose = "info" | ||
|
||
# Don't show interactive progress bar while checking links. | ||
no_progress = true | ||
|
||
### | ||
### Cache | ||
### | ||
|
||
# Enable link caching. This can be helpful to avoid checking the same links on | ||
# multiple runs. | ||
cache = false | ||
|
||
### | ||
### Requests | ||
### | ||
|
||
# Website timeout from connect to response finished. | ||
timeout = 30 | ||
|
||
# Comma-separated list of accepted status codes for valid links. | ||
accept = [200, 403, 429] | ||
|
||
# Base URL or website root directory to check relative URLs. | ||
base = "https://docs.getdbt.com" | ||
|
||
### | ||
### Exclusions | ||
### | ||
|
||
# Exclude URLs from checking (supports regex) | ||
exclude = [ | ||
'frontMatter.', | ||
'https://badge.fury.io', | ||
'https://img.shields.io', | ||
'https://gitlab.com', | ||
'https://dbtlabs.postman.co', | ||
'https://mobile.twitter.com', | ||
'https://twitter.com', | ||
'https://www.twitter.com', | ||
] | ||
|
||
# Exclude all mail addresses from checking | ||
exclude_mail = true | ||
|
||
# Check links inside `<code>` and `<pre>` blocks as well as Markdown code | ||
# blocks. | ||
include_verbatim = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Docs Link Checker | ||
|
||
on: | ||
schedule: | ||
# Run every day at 12:00 UTC | ||
- cron: '0 12 * * *' | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Link Checker | ||
uses: lycheeverse/lychee-action@master | ||
with: | ||
args: --verbose --config .github/lychee.toml './website/**/*.md' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.PHONY: run install build | ||
|
||
run: | ||
npm start | ||
|
||
install: | ||
npm install | ||
|
||
build: | ||
DOCS_ENV=build npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.