Skip to content

Commit

Permalink
chore(ci): disable docker gha trigger stage
Browse files Browse the repository at this point in the history
* Disable Docker GHA trigger stage due to GitHub API issues.
* Add a timeout option as an optimization so there are no infinite retried by the GHA invocation script.

Related to CAMTEAM-235, closes camunda#1875
  • Loading branch information
koevskinikola authored Apr 14, 2022
1 parent f405d40 commit f31f84f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci/daily/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ pipeline {
}
stage('Trigger Docker CE GHA') {
when {
branch cambpmDefaultBranch();
// temporarily disable stage due to GitHub API issues
expression { false }
// branch cambpmDefaultBranch();
}
agent {
kubernetes {
Expand All @@ -100,6 +102,9 @@ pipeline {
])
}
}
options {
timeout(time: 15, unit: 'MINUTES')
}
environment {
// define helper script input arguments
INPUT_OWNER = 'camunda'
Expand Down

0 comments on commit f31f84f

Please sign in to comment.