mirror of
https://github.com/Colin-XKL/Colinx-Blog.git
synced 2026-01-11 18:21:28 +08:00
18 lines
396 B
HCL
18 lines
396 B
HCL
workflow "Hugo Link Check" {
|
|
resolves = "linkcheck"
|
|
on = "pull_request"
|
|
}
|
|
|
|
action "filter-to-pr-open-synced" {
|
|
uses = "actions/bin/filter@master"
|
|
args = "action 'opened|synchronize'"
|
|
}
|
|
|
|
action "linkcheck" {
|
|
uses = "marccampbell/hugo-linkcheck-action@v0.1.3"
|
|
needs = "filter-to-pr-open-synced"
|
|
secrets = ["GITHUB_TOKEN"]
|
|
env = {
|
|
HUGO_FINAL_URL = "https://blog.colinx.one"
|
|
}
|
|
} |