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.
1 parent 5020b6d commit 18719a2Copy full SHA for 18719a2
.github/workflows/check-broken-links.yml
@@ -28,14 +28,18 @@ jobs:
28
env:
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
31
- - name: Create or update GitHub issue if broken links found
+ - name: Add front-matter for issue
32
+ if: failure()
33
+ run: |
34
+ echo -e "---\ntitle: Broken Links Detected\nlabels: bug, links\n---\n$(cat lychee/out.md)" > lychee/out.md
35
+
36
+ - name: Create or update GitHub issue
37
if: failure()
38
uses: JasonEtco/create-an-issue@v2
39
40
41
with:
42
filename: lychee/out.md
- title: "Broken Links Detected"
- labels: bug, links
43
update_existing: true
44
search_existing: all
45
0 commit comments