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 44 workflow_call :
55 inputs :
66 strict :
7+ description : ' Treat warnings as errors'
78 type : boolean
89 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
915
1016permissions :
1117 id-token : write
6268 - name : Build documentation
6369 if : github.repository != 'elastic/docs-builder'
6470 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
6672 with :
6773 prefix : " /${{ github.repository }}/pull/${{ github.event.pull_request.number }}"
6874 strict : ${{ inputs.strict }}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ inputs:
1515 description : ' Treat warnings as errors'
1616 required : false
1717 continue-on-error :
18- description : ' Treat warnings as errors '
18+ description : ' Do not fail to publish if build fails '
1919 required : false
2020 default : " false"
2121 private :
You can’t perform that action at this time.
0 commit comments