We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58ed62b commit 37138d3Copy full SHA for 37138d3
1 file changed
.github/workflows/bionemo-recipes.yml
@@ -32,11 +32,11 @@ jobs:
32
uses: step-security/changed-files@v46
33
with:
34
base_sha: main
35
+ dir_names: true
36
+ dir_names_max_depth: 2
37
- - name: List all changed files
- env:
38
- ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
+ - name: Show output
39
run: |
40
- for file in ${ALL_CHANGED_FILES}; do
41
- echo "$file was changed"
42
- done
+ echo '${{ toJSON(steps.changed-files.outputs) }}'
+ shell:
+ bash
0 commit comments