From c89cc6ff9afb7e8d5ba8fa805ebb0c2b2842c4f4 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 13:34:44 -0400 Subject: [PATCH] Disable creating GH issues for build failures. (#1677) (#1678) The E2E tests are still unstable and the issues reported for those failures is creating a lot of noise in the issue tracker. (cherry picked from commit b394e2f4fd34f8fa909406859991841917b754e8) Co-authored-by: Craig MacKenzie --- .ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index c374bfeb0ef..61f8c6b9e13 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -425,7 +425,7 @@ pipeline { cleanup { notifyBuildResult(prComment: true, analyzeFlakey: !isTag(), jobName: getFlakyJobName(withBranch: (isPR() ? env.CHANGE_TARGET : env.BRANCH_NAME)), - githubIssue: isBranch() && currentBuild.currentResult != "SUCCESS", + githubIssue: false, // Disable creating gh issues for build failures while the E2E tests are stabilized. githubLabels: 'Team:Elastic-Agent-Control-Plane') } }