We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e27ac51 commit b1dff81Copy full SHA for b1dff81
.github/workflows/check-links.yml
@@ -15,7 +15,8 @@ on:
15
schedule:
16
- cron: '0 12 * * 0'
17
18
-permissions: {}
+permissions:
19
+ issues: write
20
21
jobs:
22
check_links:
@@ -73,7 +74,7 @@ jobs:
73
74
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
75
76
- name: Create Issue From File
- if: env.lychee_exit_code != 0
77
+ if: ${{ steps.lychee.outputs.exit_code }} != 0
78
run: |
79
cd repository/
80
title="Link Checker Report on ${CURRENT_DATE}"
0 commit comments