We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2814893 commit 76ee66eCopy full SHA for 76ee66e
1 file changed
actions/run-jenkins-job/index.js
@@ -88,6 +88,7 @@ axios.post(jobBuildUrl, qs.stringify(queryParamJson), { auth: basicAuth })
88
const internalJenkinsDomain = 'https://jenkins.mgmt.totango.com';
89
// for GitHub Actions we need to use external Jenkins Domain,
90
// but the job has inside only internal domain
91
+ core.info(`check if buildUrl has not needed domain ${buildUrl.startsWith(internalJenkinsDomain)}`)
92
if (buildUrl.startsWith(internalJenkinsDomain)) {
93
buildUrl = buildUrl.replace(internalJenkinsDomain, 'https://jenkins.totango.com');
94
}
0 commit comments