Skip to content

Commit 6efae9b

Browse files
committed
fixup
Signed-off-by: Frederic BIDON <fredbi@yahoo.com>
1 parent 659b329 commit 6efae9b

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/TODO.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Evaluate:
2+
3+
* misspell
4+
* spellcheck
5+
* govulncheck

.github/workflows/markdown.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)