We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e91dc3b commit acef073Copy full SHA for acef073
.github/workflows/ci.yml
@@ -30,7 +30,14 @@ jobs:
30
with:
31
since_last_remote_commit: true
32
files: |
33
- **/Dockerfile
+ **/*
34
+
35
+ - name: Echo list of changed files on success
36
+ run: |
37
+ echo "Changed files:"
38
+ echo "${{ steps.changed-files.outputs.all_changed_files }}"
39
+ echo "Changed files using toJSON:"
40
+ echo '${{ toJSON(steps.changed-files.outputs.all_changed_files) }}'
41
42
- name: Prepare
43
id: prepare
@@ -42,7 +49,7 @@ jobs:
49
50
44
51
def discover() -> list[str]:
45
- for changed in ${{ steps.changed-markdown-files.outputs.all_changed_files || '[]' }}:
52
+ for changed in "${{ steps.changed-files.outputs.all_changed_files }}".split(" "):
46
53
path = Path(changed)
47
54
if Path(path.parts[0]).is_dir():
48
55
yield path.parts[0]
0 commit comments