From f836abdbb90e7ab298d562fd31866740618efce1 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 22 Jun 2022 13:11:01 +0200 Subject: [PATCH] Be nicer during the BASE build. --- .github/workflows/_shared-docs-build-pr.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_shared-docs-build-pr.yml b/.github/workflows/_shared-docs-build-pr.yml index 2b43ee6..20d63a5 100644 --- a/.github/workflows/_shared-docs-build-pr.yml +++ b/.github/workflows/_shared-docs-build-pr.yml @@ -27,12 +27,16 @@ on: required: false type: string init-lenient: - description: Use the lenient option during build init. Has no effect if init-dest-dir is supplied. + description: | + Use the lenient option during build init. Has no effect if init-dest-dir is supplied. + This is only passed to the HEAD build. The BASE build always runs with `true`. required: false type: boolean default: false init-fail-on-error: - description: Use the fail-on-error option during build init. Has no effect if init-dest-dir is supplied. + description: | + Use the fail-on-error option during build init. Has no effect if init-dest-dir is supplied. + This is only passed to the HEAD build. The BASE build always runs with `false`. required: false type: boolean default: false @@ -227,8 +231,8 @@ jobs: dest-dir: ${{ steps.vars.outputs.init-dir-base }} skip-init: ${{ steps.vars.outputs.skip-init }} antsibull-docs-version: '${{ inputs.init-antsibull-docs-version }}' - lenient: ${{ inputs.init-lenient }} - fail-on-error: ${{ inputs.init-fail-on-error }} + lenient: true + fail-on-error: false provide-link-targets: ${{ inputs.provide-link-targets }} - name: Build BASE