Skip to content

Commit

Permalink
Update .github/workflows/ci_weekly_report.yaml
Browse files Browse the repository at this point in the history
Co-authored-by: signed-long <[email protected]>
  • Loading branch information
BBBmau and signed-long authored Jun 30, 2024
1 parent 2a068fa commit e813245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_weekly_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
})
var report = {}
jobs.slice(1, jobs.length-1).forEach(job => {
const jobName = job.name.split('/')[1].trim();
const jobName = job.name.split('/')[2].trim();
report[jobName] = report[jobName] || { successes: [], failures: [], cancelled: [] };
switch (job.conclusion) {
case "success":
Expand Down

0 comments on commit e813245

Please sign in to comment.