From ac3e48b5aa87152fddc2c40dbfaef2548cd30bc3 Mon Sep 17 00:00:00 2001 From: Riz Urian <98958099+rizjosel@users.noreply.github.com> Date: Sat, 27 Dec 2025 09:08:40 +0800 Subject: [PATCH] Update Jenkinsfile.pr Signed-off-by: Riz Urian <98958099+rizjosel@users.noreply.github.com> --- Jenkinsfile.pr | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Jenkinsfile.pr b/Jenkinsfile.pr index b372541ad..547788dca 100644 --- a/Jenkinsfile.pr +++ b/Jenkinsfile.pr @@ -15,6 +15,14 @@ pipeline { stages { + stage('Notify GitHub Pending') { + steps { + script { + githubNotify context: 'Jenkins CI', status: 'PENDING' + } + } + } + stage('List Workspace') { steps { sh 'ls -l' @@ -68,4 +76,17 @@ pipeline { } } } + + post { + success { + script { + githubNotify context: 'Jenkins CI', status: 'SUCCESS' + } + } + failure { + script { + githubNotify context: 'Jenkins CI', status: 'FAILURE' + } + } + } }