Skip to content

Commit 38533d7

Browse files
authored
Be nicer during the BASE build. (#48)
1 parent 521a079 commit 38533d7

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/_shared-docs-build-pr.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,16 @@ on:
2727
required: false
2828
type: string
2929
init-lenient:
30-
description: Use the lenient option during build init. Has no effect if init-dest-dir is supplied.
30+
description: |
31+
Use the lenient option during build init. Has no effect if init-dest-dir is supplied.
32+
This is only passed to the HEAD build. The BASE build always runs with `true`.
3133
required: false
3234
type: boolean
3335
default: false
3436
init-fail-on-error:
35-
description: Use the fail-on-error option during build init. Has no effect if init-dest-dir is supplied.
37+
description: |
38+
Use the fail-on-error option during build init. Has no effect if init-dest-dir is supplied.
39+
This is only passed to the HEAD build. The BASE build always runs with `false`.
3640
required: false
3741
type: boolean
3842
default: false
@@ -227,8 +231,8 @@ jobs:
227231
dest-dir: ${{ steps.vars.outputs.init-dir-base }}
228232
skip-init: ${{ steps.vars.outputs.skip-init }}
229233
antsibull-docs-version: '${{ inputs.init-antsibull-docs-version }}'
230-
lenient: ${{ inputs.init-lenient }}
231-
fail-on-error: ${{ inputs.init-fail-on-error }}
234+
lenient: true
235+
fail-on-error: false
232236
provide-link-targets: ${{ inputs.provide-link-targets }}
233237

234238
- name: Build BASE

0 commit comments

Comments
 (0)