Testing webhook

This commit is contained in:
andrew clark
2025-10-16 15:07:31 -06:00
parent 5a9b33a8ad
commit 97ebaa38e4

8
qetest/Jenkinsfile vendored
View File

@@ -29,8 +29,8 @@ pipeline {
curl -X POST '${WEBHOOK_URL}' \
-H 'Content-Type: application/json' \
-d '{
"subject": "✅ Build Success - ${JOB_NAME}",
"text": "Build ${BUILD_NUMBER} completed successfully on branch ${BRANCH_NAME}"
"subject": "✅ Build Success",
"text": "successful build"
}'
"""
}
@@ -42,8 +42,8 @@ pipeline {
curl -X POST '${WEBHOOK_URL}' \
-H 'Content-Type: application/json' \
-d '{
"subject": "❌ Build Failed - ${JOB_NAME}",
"text": "Build ${BUILD_NUMBER} failed on branch ${BRANCH_NAME}"
"subject": "❌ Build Failed",
"text": "Failed to build"
}'
"""
}