Skip to content

Commit

Permalink
fix: skipped github jobs were not handled properly
Browse files Browse the repository at this point in the history
  • Loading branch information
klesh committed Oct 11, 2023
1 parent d5b52b7 commit 94263cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/plugins/github/tasks/cicd_job_convertor.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func ConvertJobs(taskCtx plugin.SubTaskContext) (err errors.Error) {
Result: devops.GetResult(&devops.ResultRule{
Failed: []string{"failure"},
Success: []string{"success"},
Skipped: []string{"skipped"},
Skipped: []string{"skipped", "NEUTRAL"},
}, line.Conclusion),
Status: devops.GetStatus(&devops.StatusRule[string]{
Done: []string{"completed", "COMPLETED"},
Expand Down

0 comments on commit 94263cb

Please sign in to comment.