Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Oct 7, 2024
1 parent 6ba39fd commit dd1b36a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions vars/updateIntegTestFailureIssues.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,15 @@ void call(Map args = [:]) {
testData << rowData
}
def markdownContent = new CreateIntegTestMarkDownTable(version, testData).create()
createGithubIssue(
repoUrl: component.repository,
issueTitle: "[AUTOCUT] Integration Test Failed for ${component.name}-${version}",
issueBody: markdownContent,
label: "autocut,v${version}",
issueEdit: true
)
println(markdownContent)
writeFile file: "failedTest.md", text: markdownContent
// createGithubIssue(
// repoUrl: component.repository,
// issueTitle: "[AUTOCUT] Integration Test Failed for ${component.name}-${version}",
// issueBody: markdownContent,
// label: "autocut,v${version}",
// issueEdit: true
// )
}
if (passedComponents.contains(component.name) && !failedComponents.contains(component.name)) {
println("Integration tests passed for ${component.name}, closing github issue")
Expand Down

0 comments on commit dd1b36a

Please sign in to comment.