feat(ci): Push-Benachrichtigung bei Test-Erfolg oder -Fehlschlag für Jenkins und Woodpecker integriert

This commit is contained in:
ISA
2025-09-03 06:29:41 +02:00
parent 2d9cd74375
commit 5252ec5998
7 changed files with 28 additions and 5 deletions

8
Jenkinsfile vendored
View File

@@ -16,4 +16,12 @@ pipeline {
}
}
}
post {
success {
sh 'curl.exe -d "Tests erfolgreich" https://ntfy.sh/OEOr8DNB0aT2mXWg231PeEEKwvuzt86qgM8ezQmgfcX9ZIlZ35'
}
failure {
sh 'curl.exe -d "Tests fehlgeschlagen" https://ntfy.sh/OEOr8DNB0aT2mXWg231PeEEKwvuzt86qgM8ezQmgfcX9ZIlZ35'
}
}
}