-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Etai Lev Ran <[email protected]>
- Loading branch information
Showing
2 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
name: Hugo Link Check | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
linkcheck: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Filter to PR Open/Synced | ||
uses: actions/bin/filter@master | ||
with: | ||
args: action 'opened|synchronize' | ||
|
||
- name: Run Hugo Link Check | ||
uses: marccampbell/[email protected] | ||
env: | ||
HUGO_CONFIG: "./website/config.toml" | ||
HUGO_ROOT: "./website" | ||
HUGO_CONTENT_ROOT: "./website/content" | ||
HUGO_FINAL_URL: "https://clusterlink.net" |