File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 4
4
workflow_call :
5
5
inputs :
6
6
strict :
7
+ description : ' Treat warnings as errors'
7
8
type : boolean
8
9
default : true
10
+ continue-on-error :
11
+ description : ' Do not fail to publish if build fails'
12
+ type : boolean
13
+ required : false
14
+ default : true # default for will be false after migration
9
15
10
16
permissions :
11
17
id-token : write
62
68
- name : Build documentation
63
69
if : github.repository != 'elastic/docs-builder'
64
70
uses : elastic/docs-builder@main
65
- continue-on-error : ${{ inputs.strict ! = 'true' }} # Will be removed after the migration phase
71
+ continue-on-error : ${{ inputs.continue-on-error = = 'true' }} # Will be removed after the migration phase
66
72
with :
67
73
prefix : " /${{ github.repository }}/pull/${{ github.event.pull_request.number }}"
68
74
strict : ${{ inputs.strict }}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ inputs:
15
15
description : ' Treat warnings as errors'
16
16
required : false
17
17
continue-on-error :
18
- description : ' Treat warnings as errors '
18
+ description : ' Do not fail to publish if build fails '
19
19
required : false
20
20
default : " false"
21
21
private :
You can’t perform that action at this time.
0 commit comments