We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ca055a commit 989607bCopy full SHA for 989607b
.github/workflows/bionemo-recipes.yml
@@ -44,7 +44,9 @@ jobs:
44
recipes/**
45
46
- id: set-dirs
47
- # TODO: add models to the list of dirs
+ # 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.
50
run: |
51
DIRS=$(ls -d recipes/*/ | jq -R -s -c 'split("\n")[:-1]')
52
echo "dirs=$DIRS" >> $GITHUB_OUTPUT
@@ -66,7 +68,6 @@ jobs:
66
68
67
69
steps:
70
- name: Checkout repository
- if: contains(needs.changed-dirs.outputs.all_changed_files, matrix.dir)
71
uses: actions/checkout@v4
72
with:
73
sparse-checkout: '${{ matrix.dir }}'
0 commit comments