Update Jenkinsfile.pr

Signed-off-by: Riz Urian <98958099+rizjosel@users.noreply.github.com>
This commit is contained in:
Riz Urian 2025-12-27 10:18:22 +08:00 committed by GitHub
parent ef9dc3fd1a
commit 07202b3b16
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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'
)
}
}
}