Skip to content

Commit 7a97ace

Browse files
committed
wtf
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
1 parent d60530a commit 7a97ace

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/bionemo-recipes.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,17 @@ jobs:
2929
- uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
32-
- uses: step-security/changed-files@v46
32+
33+
- name: Get changed files
3334
id: changed-files
34-
with:
35-
base_sha: main
36-
dir_names: true
37-
dir_names_max_depth: 2
38-
- name: List all changed directories
35+
uses: step-security/changed-files@v46
36+
37+
- name: List all changed files
3938
env:
40-
ALL_CHANGED_DIRECTORIES: ${{ steps.changed-files.outputs.all_changed_directories }}
39+
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
4140
run: |
42-
for directory in ${ALL_CHANGED_DIRECTORIES}; do
43-
echo "$directory was changed"
41+
for file in ${ALL_CHANGED_FILES}; do
42+
echo "$file was changed"
4443
done
4544
4645
pre-commit:

0 commit comments

Comments
 (0)