We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3e0048 commit 70d666eCopy full SHA for 70d666e
.github/workflows/check-links.yml
@@ -68,7 +68,8 @@ jobs:
68
69
- name: Create Issue From File
70
if: env.lychee_exit_code != 0
71
- uses: peter-evans/create-issue-from-file@v5
72
- with:
73
- title: Link Checker Report on ${{ steps.date.outputs.date }}
74
- content-filepath: ./lychee/out.md
+ run: |
+ title="Link Checker Report on ${{ steps.date.outputs.date }}"
+ gh issue create --title "$title" --body-file ./lychee/out.md
+ env:
75
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments