From 07202b3b16bccff6ae9162676fe7eb094a9dda60 Mon Sep 17 00:00:00 2001 From: Riz Urian <98958099+rizjosel@users.noreply.github.com> Date: Sat, 27 Dec 2025 10:18:22 +0800 Subject: [PATCH] Update Jenkinsfile.pr Signed-off-by: Riz Urian <98958099+rizjosel@users.noreply.github.com> --- Jenkinsfile.pr | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/Jenkinsfile.pr b/Jenkinsfile.pr index 092467f38..b638954dc 100644 --- a/Jenkinsfile.pr +++ b/Jenkinsfile.pr @@ -10,15 +10,6 @@ pipeline { stages { - stage('Notify GitHub Pending') { - steps { - setGitHubPullRequestStatus( - context: 'Jenkins CI', - state: 'PENDING' - ) - } - } - stage('List Workspace') { steps { sh 'ls -l' @@ -53,19 +44,4 @@ pipeline { } } } - - post { - success { - setGitHubPullRequestStatus( - context: 'Jenkins CI', - state: 'SUCCESS' - ) - } - failure { - setGitHubPullRequestStatus( - context: 'Jenkins CI', - state: 'FAILURE' - ) - } - } }