Skip to content

Commit 23b9deb

Browse files
authored
Fix GHA error in (currently unused) nightly workflows (#329)
To disable these two nightly workflows, the entire "on:" section was commented out. That is an error since a GHA workflow must have an "on:". This PR just uncomments "on:" and "workflow_dispatch". (I was seeing daily errors from these on my fork because I had actions enabled. Not sure why they don't cause errors on the main repo.) Signed-off-by: Mark Harris <[email protected]>
1 parent a029470 commit 23b9deb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cu128-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: fVDB Nightly Build and Tests -- CUDA 12.8
22

3-
# on:
3+
on:
44
# schedule:
55
# - cron: "01 15 * * *" # Runs every day at 4am pacific/11am UTC
6-
# workflow_dispatch:
6+
workflow_dispatch:
77

88

99
permissions:

.github/workflows/cu130-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: fVDB Nightly Build and Tests -- CUDA 13.0.1
22

3-
# on:
3+
on:
44
# schedule:
55
# - cron: "01 15 * * *" # Runs every day at 4am pacific/11am UTC
6-
# workflow_dispatch:
6+
workflow_dispatch:
77

88

99
permissions:

0 commit comments

Comments
 (0)