-
Notifications
You must be signed in to change notification settings - Fork 1
/
workflow-dispatch-events.json
1472 lines (1472 loc) · 99.3 KB
/
workflow-dispatch-events.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"action": "requested",
"workflow_run": {
"id": 3495383966,
"name": "Remote Deploy 2022-11-15 13:25",
"node_id": "WFR_kwLOIc_AfM7QV1Oe",
"head_branch": "main",
"head_sha": "28b2cf5991adba37132ae97e77d5d4aa1746d76c",
"path": ".github/workflows/main.yml",
"display_title": "Remote Deploy 2022-11-15 13:25",
"run_number": 1,
"event": "workflow_dispatch",
"status": "queued",
"conclusion": null,
"workflow_id": 40771086,
"check_suite_id": 9378603625,
"check_suite_node_id": "CS_kwDOIc_AfM8AAAACLwIiaQ",
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966",
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966",
"pull_requests": [],
"created_at": "2022-11-18T08:36:20Z",
"updated_at": "2022-11-18T08:36:20Z",
"actor": {
"login": "workflow-timer-beta[bot]",
"id": 117216599,
"node_id": "BOT_kgDOBvyVVw",
"avatar_url": "https://avatars.githubusercontent.com/u/7823236?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D",
"html_url": "https://github.com/apps/workflow-timer-beta",
"followers_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"run_attempt": 1,
"referenced_workflows": [],
"run_started_at": "2022-11-18T08:36:20Z",
"triggering_actor": {
"login": "workflow-timer-beta[bot]",
"id": 117216599,
"node_id": "BOT_kgDOBvyVVw",
"avatar_url": "https://avatars.githubusercontent.com/u/7823236?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D",
"html_url": "https://github.com/apps/workflow-timer-beta",
"followers_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"jobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/jobs",
"logs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/logs",
"check_suite_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/check-suites/9378603625",
"artifacts_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/artifacts",
"cancel_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/cancel",
"rerun_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/rerun",
"previous_attempt_url": null,
"workflow_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/workflows/40771086",
"head_commit": {
"id": "28b2cf5991adba37132ae97e77d5d4aa1746d76c",
"tree_id": "adb9ac66eca8db3f34c30b0061df8aac36f74b1e",
"message": "update",
"timestamp": "2022-11-15T12:25:22Z",
"author": {
"name": "Carl-Fredrik Arvidson",
"email": "[email protected]"
},
"committer": {
"name": "Carl-Fredrik Arvidson",
"email": "[email protected]"
}
},
"repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/languages",
"stargazers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/stargazers",
"contributors_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contributors",
"subscribers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscribers",
"subscription_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscription",
"commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contents/{+path}",
"compare_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/merges",
"archive_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/downloads",
"issues_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues{/number}",
"pulls_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/labels{/name}",
"releases_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/releases{/id}",
"deployments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/deployments"
},
"head_repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/languages",
"stargazers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/stargazers",
"contributors_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contributors",
"subscribers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscribers",
"subscription_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscription",
"commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contents/{+path}",
"compare_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/merges",
"archive_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/downloads",
"issues_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues{/number}",
"pulls_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/labels{/name}",
"releases_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/releases{/id}",
"deployments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/deployments"
}
},
"workflow": {
"id": 40771086,
"node_id": "W_kwDOIc_AfM4Cbh4O",
"name": "Remote Deploy 2022-11-15 13:25",
"path": ".github/workflows/main.yml",
"state": "active",
"created_at": "2022-11-17T12:27:55.000Z",
"updated_at": "2022-11-17T12:27:55.000Z",
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/workflows/40771086",
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/blob/main/.github/workflows/main.yml",
"badge_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/workflows/Remote%20Deploy%202022-11-15%2013:25/badge.svg"
},
"repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/languages",
"stargazers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/stargazers",
"contributors_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contributors",
"subscribers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscribers",
"subscription_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscription",
"commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contents/{+path}",
"compare_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/merges",
"archive_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/downloads",
"issues_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues{/number}",
"pulls_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/labels{/name}",
"releases_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/releases{/id}",
"deployments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/deployments",
"created_at": "2022-11-17T12:27:41Z",
"updated_at": "2022-11-17T12:27:41Z",
"pushed_at": "2022-11-17T12:27:52Z",
"git_url": "git://github.com/cfarvidson-team/workflow-test-cfarvidson-team.git",
"ssh_url": "[email protected]:cfarvidson-team/workflow-test-cfarvidson-team.git",
"clone_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team.git",
"svn_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"homepage": null,
"size": 17,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "private",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
"organization": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"url": "https://api.github.com/orgs/cfarvidson-team",
"repos_url": "https://api.github.com/orgs/cfarvidson-team/repos",
"events_url": "https://api.github.com/orgs/cfarvidson-team/events",
"hooks_url": "https://api.github.com/orgs/cfarvidson-team/hooks",
"issues_url": "https://api.github.com/orgs/cfarvidson-team/issues",
"members_url": "https://api.github.com/orgs/cfarvidson-team/members{/member}",
"public_members_url": "https://api.github.com/orgs/cfarvidson-team/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"description": null
},
"sender": {
"login": "workflow-timer-beta[bot]",
"id": 117216599,
"node_id": "BOT_kgDOBvyVVw",
"avatar_url": "https://avatars.githubusercontent.com/u/7823236?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D",
"html_url": "https://github.com/apps/workflow-timer-beta",
"followers_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"installation": {
"id": 31323472,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzEzMjM0NzI="
}
},
{
"action": "queued",
"workflow_job": {
"id": 9570073545,
"run_id": 3495383966,
"run_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966",
"run_attempt": 1,
"node_id": "CR_kwDOIc_AfM8AAAACOmu7yQ",
"head_sha": "28b2cf5991adba37132ae97e77d5d4aa1746d76c",
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/jobs/9570073545",
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/jobs/5852088688",
"status": "queued",
"conclusion": null,
"started_at": "2022-11-18T08:36:21Z",
"completed_at": null,
"name": "printInputs",
"steps": [],
"check_run_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/check-runs/9570073545",
"labels": ["ubuntu-latest"],
"runner_id": null,
"runner_name": null,
"runner_group_id": null,
"runner_group_name": null
},
"repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/languages",
"stargazers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/stargazers",
"contributors_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contributors",
"subscribers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscribers",
"subscription_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscription",
"commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contents/{+path}",
"compare_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/merges",
"archive_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/downloads",
"issues_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues{/number}",
"pulls_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/labels{/name}",
"releases_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/releases{/id}",
"deployments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/deployments",
"created_at": "2022-11-17T12:27:41Z",
"updated_at": "2022-11-17T12:27:41Z",
"pushed_at": "2022-11-17T12:27:52Z",
"git_url": "git://github.com/cfarvidson-team/workflow-test-cfarvidson-team.git",
"ssh_url": "[email protected]:cfarvidson-team/workflow-test-cfarvidson-team.git",
"clone_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team.git",
"svn_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"homepage": null,
"size": 17,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "private",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
"organization": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"url": "https://api.github.com/orgs/cfarvidson-team",
"repos_url": "https://api.github.com/orgs/cfarvidson-team/repos",
"events_url": "https://api.github.com/orgs/cfarvidson-team/events",
"hooks_url": "https://api.github.com/orgs/cfarvidson-team/hooks",
"issues_url": "https://api.github.com/orgs/cfarvidson-team/issues",
"members_url": "https://api.github.com/orgs/cfarvidson-team/members{/member}",
"public_members_url": "https://api.github.com/orgs/cfarvidson-team/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"description": null
},
"sender": {
"login": "workflow-timer-beta[bot]",
"id": 117216599,
"node_id": "BOT_kgDOBvyVVw",
"avatar_url": "https://avatars.githubusercontent.com/u/7823236?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D",
"html_url": "https://github.com/apps/workflow-timer-beta",
"followers_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"installation": {
"id": 31323472,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzEzMjM0NzI="
}
},
{
"action": "completed",
"workflow_job": {
"id": 9570073545,
"run_id": 3495383966,
"run_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966",
"run_attempt": 1,
"node_id": "CR_kwDOIc_AfM8AAAACOmu7yQ",
"head_sha": "28b2cf5991adba37132ae97e77d5d4aa1746d76c",
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/jobs/9570073545",
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/jobs/5852088688",
"status": "completed",
"conclusion": "success",
"started_at": "2022-11-18T08:36:30Z",
"completed_at": "2022-11-18T08:36:30Z",
"name": "printInputs",
"steps": [
{
"name": "Set up job",
"status": "completed",
"conclusion": "success",
"number": 1,
"started_at": "2022-11-18T08:36:28.000Z",
"completed_at": "2022-11-18T08:36:29.000Z"
},
{
"name": "Run echo \"Log level: warning\"",
"status": "completed",
"conclusion": "success",
"number": 2,
"started_at": "2022-11-18T08:36:29.000Z",
"completed_at": "2022-11-18T08:36:29.000Z"
},
{
"name": "Complete job",
"status": "completed",
"conclusion": "success",
"number": 3,
"started_at": "2022-11-18T08:36:29.000Z",
"completed_at": "2022-11-18T08:36:29.000Z"
}
],
"check_run_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/check-runs/9570073545",
"labels": ["ubuntu-latest"],
"runner_id": 1,
"runner_name": "Hosted Agent",
"runner_group_id": 2,
"runner_group_name": "GitHub Actions"
},
"repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/languages",
"stargazers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/stargazers",
"contributors_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contributors",
"subscribers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscribers",
"subscription_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscription",
"commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contents/{+path}",
"compare_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/merges",
"archive_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/downloads",
"issues_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues{/number}",
"pulls_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/labels{/name}",
"releases_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/releases{/id}",
"deployments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/deployments",
"created_at": "2022-11-17T12:27:41Z",
"updated_at": "2022-11-17T12:27:41Z",
"pushed_at": "2022-11-17T12:27:52Z",
"git_url": "git://github.com/cfarvidson-team/workflow-test-cfarvidson-team.git",
"ssh_url": "[email protected]:cfarvidson-team/workflow-test-cfarvidson-team.git",
"clone_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team.git",
"svn_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"homepage": null,
"size": 17,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": false,
"topics": [],
"visibility": "private",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main"
},
"organization": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"url": "https://api.github.com/orgs/cfarvidson-team",
"repos_url": "https://api.github.com/orgs/cfarvidson-team/repos",
"events_url": "https://api.github.com/orgs/cfarvidson-team/events",
"hooks_url": "https://api.github.com/orgs/cfarvidson-team/hooks",
"issues_url": "https://api.github.com/orgs/cfarvidson-team/issues",
"members_url": "https://api.github.com/orgs/cfarvidson-team/members{/member}",
"public_members_url": "https://api.github.com/orgs/cfarvidson-team/public_members{/member}",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"description": null
},
"sender": {
"login": "workflow-timer-beta[bot]",
"id": 117216599,
"node_id": "BOT_kgDOBvyVVw",
"avatar_url": "https://avatars.githubusercontent.com/u/7823236?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D",
"html_url": "https://github.com/apps/workflow-timer-beta",
"followers_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"installation": {
"id": 31323472,
"node_id": "MDIzOkludGVncmF0aW9uSW5zdGFsbGF0aW9uMzEzMjM0NzI="
}
},
{
"action": "in_progress",
"workflow_run": {
"id": 3495383966,
"name": "Remote Deploy 2022-11-15 13:25",
"node_id": "WFR_kwLOIc_AfM7QV1Oe",
"head_branch": "main",
"head_sha": "28b2cf5991adba37132ae97e77d5d4aa1746d76c",
"path": ".github/workflows/main.yml",
"display_title": "Remote Deploy 2022-11-15 13:25",
"run_number": 1,
"event": "workflow_dispatch",
"status": "in_progress",
"conclusion": null,
"workflow_id": 40771086,
"check_suite_id": 9378603625,
"check_suite_node_id": "CS_kwDOIc_AfM8AAAACLwIiaQ",
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966",
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966",
"pull_requests": [],
"created_at": "2022-11-18T08:36:20Z",
"updated_at": "2022-11-18T08:36:31Z",
"actor": {
"login": "workflow-timer-beta[bot]",
"id": 117216599,
"node_id": "BOT_kgDOBvyVVw",
"avatar_url": "https://avatars.githubusercontent.com/u/7823236?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D",
"html_url": "https://github.com/apps/workflow-timer-beta",
"followers_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"run_attempt": 1,
"referenced_workflows": [],
"run_started_at": "2022-11-18T08:36:20Z",
"triggering_actor": {
"login": "workflow-timer-beta[bot]",
"id": 117216599,
"node_id": "BOT_kgDOBvyVVw",
"avatar_url": "https://avatars.githubusercontent.com/u/7823236?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D",
"html_url": "https://github.com/apps/workflow-timer-beta",
"followers_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/workflow-timer-beta%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"jobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/jobs",
"logs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/logs",
"check_suite_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/check-suites/9378603625",
"artifacts_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/artifacts",
"cancel_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/cancel",
"rerun_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/runs/3495383966/rerun",
"previous_attempt_url": null,
"workflow_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/workflows/40771086",
"head_commit": {
"id": "28b2cf5991adba37132ae97e77d5d4aa1746d76c",
"tree_id": "adb9ac66eca8db3f34c30b0061df8aac36f74b1e",
"message": "update",
"timestamp": "2022-11-15T12:25:22Z",
"author": {
"name": "Carl-Fredrik Arvidson",
"email": "[email protected]"
},
"committer": {
"name": "Carl-Fredrik Arvidson",
"email": "[email protected]"
}
},
"repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/languages",
"stargazers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/stargazers",
"contributors_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contributors",
"subscribers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscribers",
"subscription_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscription",
"commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contents/{+path}",
"compare_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/merges",
"archive_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/downloads",
"issues_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues{/number}",
"pulls_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/labels{/name}",
"releases_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/releases{/id}",
"deployments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/deployments"
},
"head_repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/languages",
"stargazers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/stargazers",
"contributors_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contributors",
"subscribers_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscribers",
"subscription_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/subscription",
"commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/contents/{+path}",
"compare_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/merges",
"archive_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/downloads",
"issues_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues{/number}",
"pulls_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/labels{/name}",
"releases_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/releases{/id}",
"deployments_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/deployments"
}
},
"workflow": {
"id": 40771086,
"node_id": "W_kwDOIc_AfM4Cbh4O",
"name": "Remote Deploy 2022-11-15 13:25",
"path": ".github/workflows/main.yml",
"state": "active",
"created_at": "2022-11-17T12:27:55.000Z",
"updated_at": "2022-11-17T12:27:55.000Z",
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/actions/workflows/40771086",
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/blob/main/.github/workflows/main.yml",
"badge_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team/workflows/Remote%20Deploy%202022-11-15%2013:25/badge.svg"
},
"repository": {
"id": 567263356,
"node_id": "R_kgDOIc_AfA",
"name": "workflow-test-cfarvidson-team",
"full_name": "cfarvidson-team/workflow-test-cfarvidson-team",
"private": true,
"owner": {
"login": "cfarvidson-team",
"id": 118447366,
"node_id": "O_kgDOBw9dBg",
"avatar_url": "https://avatars.githubusercontent.com/u/118447366?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cfarvidson-team",
"html_url": "https://github.com/cfarvidson-team",
"followers_url": "https://api.github.com/users/cfarvidson-team/followers",
"following_url": "https://api.github.com/users/cfarvidson-team/following{/other_user}",
"gists_url": "https://api.github.com/users/cfarvidson-team/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cfarvidson-team/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cfarvidson-team/subscriptions",
"organizations_url": "https://api.github.com/users/cfarvidson-team/orgs",
"repos_url": "https://api.github.com/users/cfarvidson-team/repos",
"events_url": "https://api.github.com/users/cfarvidson-team/events{/privacy}",
"received_events_url": "https://api.github.com/users/cfarvidson-team/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cfarvidson-team/workflow-test-cfarvidson-team",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team",
"forks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/forks",
"keys_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/teams",
"hooks_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/hooks",
"issue_events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/issues/events{/number}",
"events_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/events",
"assignees_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/assignees{/user}",
"branches_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/branches{/branch}",
"tags_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/tags",
"blobs_url": "https://api.github.com/repos/cfarvidson-team/workflow-test-cfarvidson-team/git/blobs{/sha}",