We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cf0cb9 commit ef7cfa1Copy full SHA for ef7cfa1
1 file changed
.github/workflows/ci_smoketest_dispatch.yml
@@ -1,6 +1,8 @@
1
name: CI Smoketest Dispatch
2
3
on:
4
+ push:
5
+ branches: ["ci_test"]
6
workflow_dispatch:
7
inputs:
8
ref:
@@ -20,7 +22,7 @@ jobs:
20
22
- name: Checkout
21
23
uses: actions/checkout@v4
24
with:
- ref: ${{ inputs.ref }}
25
+ ref: ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref_name }}
26
submodules: recursive
27
28
- name: Setup Python
0 commit comments