Skip to content

Commit ad6cc9f

Browse files
committed
fix
Signed-off-by: Frederic BIDON <[email protected]>
1 parent bb75862 commit ad6cc9f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/markdown.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
- name: Notify
3232
run: |
3333
echo "::notice::Detected some changed markdown files"
34+
echo "${{ steps.changed-markdown-files.outputs.all_changed_files }}"
3435
3536
lint-markdown:
3637
needs: markdown-changed
@@ -52,7 +53,7 @@ jobs:
5253
uses: docker://avtodev/markdown-lint:v1.5
5354
with:
5455
config: .markdownlint.yml
55-
args: '${{ needs.markdown-changed.outputs.all_changed_files }}'
56+
args: "${{ needs.markdown-changed.outputs.all_changed_files }}"
5657
output: '${{ env.lintreport }}'
5758

5859
- name: Find previous PR comment

.markdownlint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
default: true
55

66
# ul-style # default: consistent
7-
# MD004: false
7+
MD004: consistent
88

99
# hard-tabs
1010
MD010: false
@@ -17,11 +17,11 @@ MD024:
1717
siblings_only: true
1818

1919
#single-title
20-
#MD025: false
20+
MD025: true
2121

2222
# ol-prefix
2323
MD029:
24-
style: ordered
24+
style: one_or_ordered
2525

2626
# no-inline-html
2727
MD033: false

0 commit comments

Comments
 (0)