Skip to content

Commit aaf4e7f

Browse files
authored
fix(ci): fix bad indentation in yml; update title (#1419)
1 parent 0c1adcc commit aaf4e7f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/check-links.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Links
1+
name: Check Links
22

33
on:
44
repository_dispatch:
@@ -20,8 +20,15 @@ jobs:
2020
# We use --exclude '\.md(#.*)?$' to skip internal links in markdown like [See test](../tests/.../test_case.md)
2121
# otherwise we get false positives due to links pointing to content that gets generated during our mkdocs flow.
2222
# These links are checked during `mkdocs build --strict`
23-
args: lychee README.md src/**/*.py src/**/*.md tests/**/*.py tests/**/*.md docs/**/*.md --exclude '\.md(#.*)?$'
2423
with:
24+
args: >
25+
README.md
26+
src/**/*.py
27+
src/**/*.md
28+
tests/**/*.py
29+
tests/**/*.md
30+
docs/**/*.md
31+
--exclude '\.md(#.*)?$'
2532
fail: false
2633

2734
- name: Create Issue From File

0 commit comments

Comments
 (0)