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 acf384c commit 8679eabCopy full SHA for 8679eab
.github/workflows/link-checker.yml
@@ -7,6 +7,12 @@ on:
7
schedule:
8
- cron: "00 00 * * 1"
9
10
+permissions:
11
+ contents: read
12
+ issues: write
13
+ actions: read
14
+ pull-requests: read
15
+
16
jobs:
17
Checking-Links:
18
runs-on: ubuntu-latest
@@ -37,8 +43,11 @@ jobs:
37
43
38
44
- name: Create Issue From File
39
45
if: env.lychee_exit_code != 0
40
- uses: peter-evans/create-issue-from-file@v4
46
+ uses: peter-evans/create-issue-from-file@v5
41
47
with:
42
48
title: Link Checker Report
49
+ token: ${{ secrets.GITHUB_TOKEN }}
50
content-filepath: ./lychee/out.md
- labels: automated issue
51
+ labels: |
52
+ report
53
+ automated issue
0 commit comments