Skip to content

Commit cbbb595

Browse files
committed
ci: temporarily auto-trigger release workflow on push to v0.1.0 (smoke-test phase)
1 parent 3a12006 commit cbbb595

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@ name: release
2525
on:
2626
push:
2727
tags: ['v*']
28-
workflow_dispatch: # manual trigger from the Actions tab
28+
# TEMPORARY (smoke-test phase): auto-run on every push to v0.1.0 so we
29+
# don't need the "Run workflow" UI button (which is only visible when
30+
# the workflow file exists on the default branch). REMOVE this
31+
# `branches:` block before cutting the real v0.1.0 tag — otherwise
32+
# every commit on the branch will burn ~1–2h of CI time.
33+
branches: ['v0.1.0']
34+
workflow_dispatch: # manual trigger from the Actions tab (only
35+
# shown once this workflow lands on `main`)
2936

3037
env:
3138
RAPIDS_CUDA_VERSION: "12.9"

0 commit comments

Comments
 (0)