@@ -154,6 +154,7 @@ type options struct {
154
154
Repositories []string
155
155
Last time.Duration
156
156
Selector string
157
+ Status string
157
158
}
158
159
159
160
func workflowHealth (w workflow ) string {
@@ -267,7 +268,7 @@ func _main(opts *options) error {
267
268
totalBillableMs := 0
268
269
269
270
for _ , r := range repos {
270
- workflows , err := getWorkflows (* r , last )
271
+ workflows , err := getWorkflows (* r , last , opts )
271
272
if err != nil {
272
273
return err
273
274
}
@@ -352,7 +353,7 @@ func getAllRepos(path string) ([]*repositoryData, error) {
352
353
return repoData , nil
353
354
}
354
355
355
- func getWorkflows (repoData repositoryData , last time.Duration ) ([]* workflow , error ) {
356
+ func getWorkflows (repoData repositoryData , last time.Duration , opts * options ) ([]* workflow , error ) {
356
357
workflowsPath := fmt .Sprintf ("repos/%s/actions/workflows" , repoData .Name )
357
358
358
359
stdout , _ , err := gh .Exec ("api" , "--cache" , defaultApiCacheTime , workflowsPath , "--jq" , ".workflows" )
@@ -403,7 +404,13 @@ func getWorkflows(repoData repositoryData, last time.Duration) ([]*workflow, err
403
404
continue
404
405
}
405
406
406
- runsPath := fmt .Sprintf ("%s/runs" , w .URL )
407
+ var runsPath string
408
+ if opts .Status != "" {
409
+ runsPath = fmt .Sprintf ("%s/runs?status=%s" , w .URL , opts .Status )
410
+ } else {
411
+ runsPath = fmt .Sprintf ("%s/runs" , w .URL )
412
+ }
413
+
407
414
stdout , _ , err = gh .Exec ("api" , "--cache" , defaultApiCacheTime , runsPath , "--jq" , ".workflow_runs" )
408
415
if err != nil {
409
416
return nil , fmt .Errorf ("could not call gh: %w" , err )
@@ -462,6 +469,7 @@ func parseArgs() (*options, error) {
462
469
463
470
repositories := flag .StringSliceP ("repos" , "r" , []string {}, "One or more repository names from the provided org or user" )
464
471
last := flag .StringP ("last" , "l" , "30d" , "What period of time to cover in hours (eg 1h) or days (eg 30d). Default: 30d" )
472
+ runStatus := flag .StringP ("status" , "s" , "" , "What workflow run status (eg completed, cancelled, failure, success) to query for" )
465
473
466
474
flag .Parse ()
467
475
@@ -522,6 +530,7 @@ func parseArgs() (*options, error) {
522
530
Repositories : * repositories ,
523
531
Last : duration ,
524
532
Selector : selector ,
533
+ Status : * runStatus ,
525
534
}, nil
526
535
}
527
536
0 commit comments