Skip to content

Commit c4f2038

Browse files
authored
make sure framework ci runs on schedule events (#1059)
Hotfix to make sure that framework runs tests nightly. They didn't run last night: https://github.com/NVIDIA/bionemo-framework/actions/runs/17119727799 Signed-off-by: Peter St. John <pstjohn@nvidia.com>
1 parent fcc2043 commit c4f2038

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/unit-tests-framework.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "BioNemo Framework CI"
1+
name: "BioNeMo Framework CI"
22

33
on:
44
push:
@@ -100,7 +100,8 @@ jobs:
100100
- get-pr-labels
101101
- changed-files
102102
runs-on: linux-amd64-cpu16
103-
if: ${{ !contains(fromJSON(needs.get-pr-labels.outputs.labels || '[]'), 'SKIP_CI') && (needs.changed-files.outputs.any_changed == 'true' || needs.changed-files.result == 'skipped') }}
103+
# We want this to run
104+
if: ${{ github.event_name == 'schedule' || (!contains(fromJSON(needs.get-pr-labels.outputs.labels || '[]'), 'SKIP_CI') && needs.changed-files.outputs.any_changed == 'true') }}
104105
steps:
105106
- name: Login to Docker Hub
106107
uses: docker/login-action@v3

0 commit comments

Comments
 (0)