File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1+ Evaluate:
2+
3+ * misspell
4+ * spellcheck
5+ * govulncheck
Original file line number Diff line number Diff line change @@ -15,16 +15,18 @@ jobs:
1515 - name : Checkout Repo
1616 uses : actions/checkout@v4
1717
18- - name : Run linter
18+ - name : Run markdown linter
1919 id : markdownlint
20+ # continue-on-error: true
2021 uses : docker://avtodev/markdown-lint:v1
2122 with :
22- config : .markdownlint.yaml
23+ config : .markdownlint.yml
2324 args : ' **/*.md'
2425 output : ./markdownlint.txt
2526
2627 - name : Create Issue From File
27- if : steps.markdownlint.outputs.exit_code != 0
28+ if : ${{ failure() && steps.markdownlint.outcome == 'failure' }}
29+ # if: steps.markdownlint.outputs.exit_code != 0
2830 uses : peter-evans/create-issue-from-file@v5
2931 with :
3032 title : Markdown Lint Report
File renamed without changes.
You can’t perform that action at this time.
0 commit comments