forked from quicksilver-zone/quicksilver
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: workflow improvements (quicksilver-zone#334)
* refactor workflows * create md link workflow * basic config for md link checker * clean up names * remove push * include mac and m1 --------- Co-authored-by: Ajaz Ahmed Ansari <[email protected]> Co-authored-by: Joe Bowman <[email protected]>
- Loading branch information
1 parent
98004f6
commit b7428ac
Showing
4 changed files
with
60 additions
and
11 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
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,13 @@ | ||
{ | ||
"ignorePatterns": [ | ||
{ | ||
"_comment": "fill out if we need to ignore" | ||
} | ||
], | ||
"baseUrl": "https://docs.quicksilver.zone/", | ||
"projectBaseUrl": "https://docs.quicksilver.zone/", | ||
"timeout": "20s", | ||
"retryOn429": true, | ||
"retryCount": 5, | ||
"fallbackRetryDelay": "30s" | ||
} |
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: check markdown links | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * 0' # run once a week | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: gaurav-nelson/[email protected] | ||
if: env.GIT_DIFF | ||
with: | ||
folder-path: "." | ||
use-verbose-mode: 'yes' | ||
config-file: '.github/workflows/md-link-checker-config.json' |
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