We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7db4731 + 6933724 commit d9a0349Copy full SHA for d9a0349
.github/main.workflow
@@ -0,0 +1,19 @@
1
+workflow "Hugo Link Check" {
2
+ resolves = "linkcheck"
3
+ on = "pull_request"
4
+}
5
+
6
+action "filter-to-pr-open-synced" {
7
+ uses = "actions/bin/filter@master"
8
+ args = "action 'opened|synchronize'"
9
10
11
+action "linkcheck" {
12
+ uses = "marccampbell/[email protected]"
13
+ needs = "filter-to-pr-open-synced"
14
+ secrets = ["GITHUB_TOKEN"]
15
+ env = {
16
+ HUGO_FINAL_URL = "https://dasc-lab.github.io/"
17
+ HUGO_CONFIG = "./hugo.toml"
18
+ }
19
0 commit comments