Skip to content

Commit

Permalink
[CI] Take Quarkus build failures in consideration for GH issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkak committed Mar 27, 2024
1 parent 9396895 commit 82e6ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/quarkus-ecosystem-issue.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void run() {
// Each configuration starts with the Set distribution job
if (job.getName().contains("Set distribution")) {
processLogs(github, job, this::processITJobs, "issue-number", "issue-repo");
} else if (job.getConclusion().equals(Conclusion.FAILURE) && (job.getName().contains("Q IT") || job.getName().contains("Mandrel build"))) {
} else if (job.getConclusion().equals(Conclusion.FAILURE) && (job.getName().contains("Q IT") || job.getName().contains("Mandrel build") || job.getName().contains("Quarkus build"))) {
for (GHIssue issue: issues.keySet()) {
if (job.getName().startsWith(issues.get(issue))) {
List<GHWorkflowJob> failedJobsList = failedMandrelJobs.get(issue);
Expand Down

0 comments on commit 82e6ba4

Please sign in to comment.