Files
Colinx-Blog/.github/workflows/main.workflow
2022-01-08 18:11:06 +08:00

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"
}
}