File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -251,14 +251,7 @@ jobs:
251251 with :
252252 bot-token : ${{ secrets.TELEGRAM_BOT_TOKEN }}
253253 chat-id : ${{ secrets.TELEGRAM_CHAT_ID }}
254- status : >-
255- ${{
256- job.status == 'success'
257- && (inputs.push-docker-image && 'docker-passed' || 'build-passed')
258- || (steps.tests.outcome == 'failure' && 'tests-failed')
259- || (inputs.push-docker-image && 'docker-failed')
260- || 'build-failed'
261- }}
254+ status : ${{ job.status == 'success' && (inputs.push-docker-image && 'docker-passed' || 'build-passed') || (steps.tests.outcome == 'failure' && 'tests-failed') || (inputs.push-docker-image && 'docker-failed') || 'build-failed' }}
262255 service-name : ${{ inputs.service-name }}
263256 message-id : ${{ steps.tg-start.outputs.message-id }}
264257 previous-lines : ${{ steps.tg-start.outputs.message-lines }}
You can’t perform that action at this time.
0 commit comments