Update .gitlab-ci.yml file

This commit is contained in:
2025-12-04 23:33:48 +01:00
parent fb3d0b5998
commit 10299b61e6

View File

@@ -52,17 +52,17 @@ notify:
stage: notify # Should be in a later stage than the job that might fail stage: notify # Should be in a later stage than the job that might fail
when: on_success # <-- This is the key keyword when: on_success # <-- This is the key keyword
script: script:
- column='"' - column=':'
- echo "${flow_id}" - echo "${flow_id}"
- curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl?message=${column}build job completed${column} - curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl -d '{"message"${column} "build job completed"}'
notify2: notify2:
stage: notify # Should be in a later stage than the job that might fail stage: notify # Should be in a later stage than the job that might fail
when: on_failure # <-- This is the key keyword when: on_failure # <-- This is the key keyword
script: script:
- column='"' - column=':'
- echo "${flow_id}" - echo "${flow_id}"
- curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl?message=${column}build job failed${column} - curl -XPOST http://192.168.77.101:8123/api/webhook/voice-notifications-tC_8YKxMJIAaQRV5riKuC7Zl -d '{"message"${column} "build job failed"}'
rules: rules:
- if: '$CI_COMMIT_MESSAGE =~ /build/' - if: '$CI_COMMIT_MESSAGE =~ /build/'