Skip to content

Commit 4a0c67e

Browse files
committed
add default value without dispatch
1 parent 32598ca commit 4a0c67e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test_build_docu_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117

118118
- name: Build docu with sphinx
119119
run: |
120-
make -C doc html NBSPHINX_EXECUTE=${{ github.event.inputs.nbsphinx-execute }}
120+
make -C doc html NBSPHINX_EXECUTE=${{ github.event.inputs.nbsphinx-execute || 'auto' }}
121121
122122
- name: Check for broken links / URLs
123123
run: |

.github/workflows/test_build_docu_released.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@ jobs:
7979

8080
- name: Build docu with sphinx
8181
run: |
82-
make -C doc html NBSPHINX_EXECUTE=${{ github.event.inputs.nbsphinx-execute }}
82+
make -C doc html NBSPHINX_EXECUTE=${{ github.event.inputs.nbsphinx-execute || 'auto' }}
8383
8484
- name: Check for broken links / URLs
85+
8586
run: |
8687
make -C doc linkcheck
8788

0 commit comments

Comments
 (0)