Skip to content

Commit 989607b

Browse files
committed
don't skip checkout
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
1 parent 2ca055a commit 989607b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/bionemo-recipes.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ jobs:
4444
recipes/**
4545
4646
- id: set-dirs
47-
# TODO: add models to the list of dirs
47+
# TODO: add models to the list of dirs. We should also use changed-files to filter this list of directories to
48+
# only include directories that have changed files if we're running pull-request or merge-group actions, but run all the
49+
# directories if we're running a schedule action.
4850
run: |
4951
DIRS=$(ls -d recipes/*/ | jq -R -s -c 'split("\n")[:-1]')
5052
echo "dirs=$DIRS" >> $GITHUB_OUTPUT
@@ -66,7 +68,6 @@ jobs:
6668

6769
steps:
6870
- name: Checkout repository
69-
if: contains(needs.changed-dirs.outputs.all_changed_files, matrix.dir)
7071
uses: actions/checkout@v4
7172
with:
7273
sparse-checkout: '${{ matrix.dir }}'

0 commit comments

Comments
 (0)