Skip to content

Commit e354424

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

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/markdown.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
markdown-changed:
1414
runs-on: ubuntu-latest
1515
outputs:
16-
proceed: ${ steps.changed-markdown-files.outputs.any_changed }
16+
proceed: ${{ steps.changed-markdown-files.outputs.any_changed }}
1717
steps:
1818
- name: Checkout Repo
1919
uses: actions/checkout@v4
@@ -22,9 +22,7 @@ jobs:
2222
id: changed-markdown-files
2323
uses: tj-actions/changed-files@v45
2424
with:
25-
# Avoid using single or double quotes for multiline patterns
26-
files: |
27-
**/*.md
25+
files: '**/*.md'
2826

2927
lint-markdown:
3028
needs: markdown-changed

0 commit comments

Comments
 (0)