DEBUG info 2
test-org/trust-module-frontend/pipeline/pr-main Build succeeded

pull/15/head
yuobrezkov 2025-03-10 17:42:40 +03:00
parent c3f1192de4
commit 8a7d47bc47
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -80,7 +80,7 @@ pipeline {
""" """
echo "PR ${prId} merged successfully into master!" echo "PR ${prId} merged successfully into master!"
def context = "test-org/trust-module-frontend/pipeline/pr-${env.CHANGE_TARGET}" def context = "test-org/trust-module-frontend/pipeline/pr-${env.CHANGE_TARGET}"
def commitHash = sh(script: "git rev-parse HEAD", returnStdout: true).trim() def commitHash = sh(script: "git rev-parse HEAD~1", returnStdout: true).trim()
echo "commit hash = ${commitHash}" echo "commit hash = ${commitHash}"
notify(context, GITEA_USER, GITEA_PASS, env.GITEA_REPOSITORY_URL, "trust-module-frontend", commitHash, "success") notify(context, GITEA_USER, GITEA_PASS, env.GITEA_REPOSITORY_URL, "trust-module-frontend", commitHash, "success")
} }