-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.txt
More file actions
1633 lines (1633 loc) · 73.5 KB
/
log.txt
File metadata and controls
1633 lines (1633 loc) · 73.5 KB
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
[46m[30m BITBUCKET CLOUD API LATEST UPDATES: [0m[36m https://developer.atlassian.com/cloud/bitbucket [0m
---------------------------------
Starting...
Searching for repositories in the workspace OpaTechTeam...
Found repositories: 1
Creating repository opatech-checkout on GitHub...
Admin permission was added for the team devs on repository opatech-checkout
Actions disabled on repository opatech-checkout
Added topic back to repository opatech-checkout
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-checkout to GitHub...
Importing pull requests from repository opatech-checkout to repository opatech-checkout...
Importing 2 pull requests to repository opatech-checkout...
Importing Pull Request SUP-386 new index and update cut day...
Pull Request imported successfully!
Importing Pull Request SUP-397 add await in startpayment method...
Pull Request imported successfully!
Enabled actions for repository opatech-checkout
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Finished!
[46m[30m BITBUCKET CLOUD API LATEST UPDATES: [0m[36m https://developer.atlassian.com/cloud/bitbucket [0m
---------------------------------
Starting...
Searching for repositories in the workspace OpaTechTeam...
Found repositories: 10
Creating repository opatech-checkout on GitHub...
Error creating repository opatech-checkout on GitHub: Repository creation failed.: {"resource":"Repository","code":"custom","field":"name","message":"name already exists on this account"}
Skipping repository opatech-checkout...
Creating repository opatech-api on GitHub...
Admin permission was added for the team devs on repository opatech-api
Actions disabled on repository opatech-api
Added topic back to repository opatech-api
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: complete!
Importing repository opatech-api to GitHub...
Importing pull requests from repository opatech-api to repository opatech-api...
Importing 3 pull requests to repository opatech-api...
Importing Pull Request SUP-386 method update schedule cut...
Pull Request imported successfully!
Importing Pull Request SUP-397 gmail mail service instead of aws...
Pull Request imported successfully!
Importing Pull Request Ch3339 disable require password to register firebase user...
Pull Request imported successfully!
Enabled actions for repository opatech-api
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opa-adm-security-api on GitHub...
Admin permission was added for the team devs on repository opa-adm-security-api
Actions disabled on repository opa-adm-security-api
Added topic back to repository opa-adm-security-api
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opa-adm-security-api to GitHub...
Importing pull requests from repository opa-adm-security-api to repository opa-adm-security-api...
No pull request found for repository opa-adm-security-api.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-backoffice on GitHub...
Admin permission was added for the team devs on repository opatech-backoffice
Actions disabled on repository opatech-backoffice
Added topic web to repository opatech-backoffice
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-backoffice to GitHub...
Importing pull requests from repository opatech-backoffice to repository opatech-backoffice...
No pull request found for repository opatech-backoffice.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opa-tech-jwt-auth on GitHub...
Admin permission was added for the team devs on repository opa-tech-jwt-auth
Actions disabled on repository opa-tech-jwt-auth
Added topic back to repository opa-tech-jwt-auth
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opa-tech-jwt-auth to GitHub...
Importing pull requests from repository opa-tech-jwt-auth to repository opa-tech-jwt-auth...
No pull request found for repository opa-tech-jwt-auth.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-promotions on GitHub...
Admin permission was added for the team devs on repository opatech-promotions
Actions disabled on repository opatech-promotions
Added topic back to repository opatech-promotions
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-promotions to GitHub...
Importing pull requests from repository opatech-promotions to repository opatech-promotions...
Importing 1 pull requests to repository opatech-promotions...
Importing Pull Request [SUP-431] fix: remove 0 and O on generateVoucherCode...
Pull Request imported successfully!
Enabled actions for repository opatech-promotions
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-scripts on GitHub...
Admin permission was added for the team devs on repository opatech-scripts
Actions disabled on repository opatech-scripts
Added topic back to repository opatech-scripts
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository opatech-scripts to GitHub...
Importing pull requests from repository opatech-scripts to repository opatech-scripts...
Importing 1 pull requests to repository opatech-scripts...
Importing Pull Request Import repos from bitbucket to github...
Pull Request imported successfully!
Enabled actions for repository opatech-scripts
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-product-v2 on GitHub...
Admin permission was added for the team devs on repository opatech-product-v2
Actions disabled on repository opatech-product-v2
Added topic back to repository opatech-product-v2
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-product-v2 to GitHub...
Importing pull requests from repository opatech-product-v2 to repository opatech-product-v2...
No pull request found for repository opatech-product-v2.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-customer on GitHub...
Admin permission was added for the team devs on repository opatech-customer
Actions disabled on repository opatech-customer
Added topic web to repository opatech-customer
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository opatech-customer to GitHub...
Importing pull requests from repository opatech-customer to repository opatech-customer...
No pull request found for repository opatech-customer.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-location on GitHub...
Admin permission was added for the team devs on repository opatech-location
Actions disabled on repository opatech-location
Added topic back to repository opatech-location
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-location to GitHub...
Importing pull requests from repository opatech-location to repository opatech-location...
No pull request found for repository opatech-location.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Finished!
[46m[30m BITBUCKET CLOUD API LATEST UPDATES: [0m[36m https://developer.atlassian.com/cloud/bitbucket [0m
---------------------------------
Starting...
Searching for repositories in the workspace OpaTechTeam...
Found repositories: 10
Creating repository opatech-offer on GitHub...
Admin permission was added for the team devs on repository opatech-offer
Actions disabled on repository opatech-offer
Added topic back to repository opatech-offer
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-offer to GitHub...
Importing pull requests from repository opatech-offer to repository opatech-offer...
No pull request found for repository opatech-offer.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-delivery on GitHub...
Admin permission was added for the team devs on repository opatech-delivery
Actions disabled on repository opatech-delivery
Added topic back to repository opatech-delivery
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-delivery to GitHub...
Importing pull requests from repository opatech-delivery to repository opatech-delivery...
Importing 1 pull requests to repository opatech-delivery...
Importing Pull Request Sc 2193 nova integracao boxdelivery...
Pull Request imported successfully!
Enabled actions for repository opatech-delivery
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-membership on GitHub...
Admin permission was added for the team devs on repository opatech-membership
Actions disabled on repository opatech-membership
Added topic back to repository opatech-membership
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-membership to GitHub...
Importing pull requests from repository opatech-membership to repository opatech-membership...
No pull request found for repository opatech-membership.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-integrator on GitHub...
Admin permission was added for the team devs on repository opatech-integrator
Actions disabled on repository opatech-integrator
Added topic integ to repository opatech-integrator
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-integrator to GitHub...
Importing pull requests from repository opatech-integrator to repository opatech-integrator...
No pull request found for repository opatech-integrator.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-functions on GitHub...
Admin permission was added for the team devs on repository opatech-functions
Actions disabled on repository opatech-functions
Added topic back to repository opatech-functions
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: complete!
Importing repository opatech-functions to GitHub...
Importing pull requests from repository opatech-functions to repository opatech-functions...
Importing 1 pull requests to repository opatech-functions...
Importing Pull Request Ch1959 new active index...
Pull Request imported successfully!
Enabled actions for repository opatech-functions
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-shopper on GitHub...
Admin permission was added for the team devs on repository opatech-shopper
Actions disabled on repository opatech-shopper
Added topic app to repository opatech-shopper
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository opatech-shopper to GitHub...
Importing pull requests from repository opatech-shopper to repository opatech-shopper...
No pull request found for repository opatech-shopper.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-chat-mid on GitHub...
Admin permission was added for the team devs on repository opatech-chat-mid
Actions disabled on repository opatech-chat-mid
Added topic back to repository opatech-chat-mid
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-chat-mid to GitHub...
Importing pull requests from repository opatech-chat-mid to repository opatech-chat-mid...
No pull request found for repository opatech-chat-mid.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository superopa-land on GitHub...
Admin permission was added for the team devs on repository superopa-land
Actions disabled on repository superopa-land
Added topic web to repository superopa-land
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository superopa-land to GitHub...
Importing pull requests from repository superopa-land to repository superopa-land...
No pull request found for repository superopa-land.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository superopa-api on GitHub...
Admin permission was added for the team devs on repository superopa-api
Actions disabled on repository superopa-api
Added topic back to repository superopa-api
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository superopa-api to GitHub...
Importing pull requests from repository superopa-api to repository superopa-api...
No pull request found for repository superopa-api.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-analytics on GitHub...
Admin permission was added for the team devs on repository opatech-analytics
Actions disabled on repository opatech-analytics
Added topic back to repository opatech-analytics
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-analytics to GitHub...
Importing pull requests from repository opatech-analytics to repository opatech-analytics...
No pull request found for repository opatech-analytics.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Finished!
[46m[30m BITBUCKET CLOUD API LATEST UPDATES: [0m[36m https://developer.atlassian.com/cloud/bitbucket [0m
---------------------------------
Starting...
Searching for repositories in the workspace OpaTechTeam...
Found repositories: 10
Creating repository opatech-rating on GitHub...
Admin permission was added for the team devs on repository opatech-rating
Actions disabled on repository opatech-rating
Added topic back to repository opatech-rating
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-rating to GitHub...
Importing pull requests from repository opatech-rating to repository opatech-rating...
No pull request found for repository opatech-rating.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-integrador on GitHub...
Admin permission was added for the team devs on repository opatech-integrador
Actions disabled on repository opatech-integrador
Added topic integ to repository opatech-integrador
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-integrador to GitHub...
Importing pull requests from repository opatech-integrador to repository opatech-integrador...
No pull request found for repository opatech-integrador.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opabox-frontssr on GitHub...
Admin permission was added for the team devs on repository opabox-frontssr
Actions disabled on repository opabox-frontssr
Added topic web to repository opabox-frontssr
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import failed: [object Object]
Import status: error!
Importing repository opabox-frontssr to GitHub...
The repository opabox-frontssr has not been imported yet. Skipping pull request import...
Creating repository opatech-wasteless on GitHub...
Admin permission was added for the team devs on repository opatech-wasteless
Actions disabled on repository opatech-wasteless
Added topic back to repository opatech-wasteless
Repository successfully created!
Import status: importing...
Import failed: [object Object]
Import status: error!
Importing repository opatech-wasteless to GitHub...
The repository opatech-wasteless has not been imported yet. Skipping pull request import...
Creating repository opabox-shopper-back on GitHub...
Admin permission was added for the team devs on repository opabox-shopper-back
Actions disabled on repository opabox-shopper-back
Added topic back to repository opabox-shopper-back
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opabox-shopper-back to GitHub...
Importing pull requests from repository opabox-shopper-back to repository opabox-shopper-back...
No pull request found for repository opabox-shopper-back.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository superopadesign on GitHub...
Admin permission was added for the team devs on repository superopadesign
Actions disabled on repository superopadesign
Added topic app to repository superopadesign
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: mapping...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository superopadesign to GitHub...
Importing pull requests from repository superopadesign to repository superopadesign...
No pull request found for repository superopadesign.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository superopa2020 on GitHub...
Admin permission was added for the team devs on repository superopa2020
Actions disabled on repository superopa2020
Added topic app to repository superopa2020
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository superopa2020 to GitHub...
Importing pull requests from repository superopa2020 to repository superopa2020...
No pull request found for repository superopa2020.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opabox-chat-socket on GitHub...
Admin permission was added for the team devs on repository opabox-chat-socket
Actions disabled on repository opabox-chat-socket
Added topic back to repository opabox-chat-socket
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opabox-chat-socket to GitHub...
Importing pull requests from repository opabox-chat-socket to repository opabox-chat-socket...
No pull request found for repository opabox-chat-socket.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opabox-back-2020 on GitHub...
Admin permission was added for the team devs on repository opabox-back-2020
Actions disabled on repository opabox-back-2020
Added topic web to repository opabox-back-2020
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: mapping...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository opabox-back-2020 to GitHub...
Importing pull requests from repository opabox-back-2020 to repository opabox-back-2020...
Importing 2 pull requests to repository opabox-back-2020...
Importing Pull Request SUP-429 fix changed orders message...
Pull Request imported successfully!
Importing Pull Request [SUP-411] add: get email in transaction_model and div class email in pedidos...
Pull Request imported successfully!
Enabled actions for repository opabox-back-2020
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opabox-web-2020 on GitHub...
Admin permission was added for the team devs on repository opabox-web-2020
Actions disabled on repository opabox-web-2020
Added topic web to repository opabox-web-2020
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: importing...
Import status: importing...
Import status: mapping...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository opabox-web-2020 to GitHub...
Importing pull requests from repository opabox-web-2020 to repository opabox-web-2020...
Importing 5 pull requests to repository opabox-web-2020...
Importing Pull Request [SUP-373] update: added qrcode to transaction detail screen...
Pull Request imported successfully!
Importing Pull Request remove letters and special characters special...
Pull Request imported successfully!
Importing Pull Request SUP-371 bug site no response for empty fields...
Pull Request imported successfully!
Importing Pull Request [SUP-406] fix: remove of limiter of search global...
Pull Request imported successfully!
Importing Pull Request [SUP-413] add: remove (comment) Opa seal...
Pull Request imported successfully!
Enabled actions for repository opabox-web-2020
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Finished!
[46m[30m BITBUCKET CLOUD API LATEST UPDATES: [0m[36m https://developer.atlassian.com/cloud/bitbucket [0m
---------------------------------
Starting...
Searching for repositories in the workspace OpaTechTeam...
Found repositories: 10
Creating repository opatech-offline-stores on GitHub...
Admin permission was added for the team devs on repository opatech-offline-stores
Actions disabled on repository opatech-offline-stores
Added topic integ to repository opatech-offline-stores
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-offline-stores to GitHub...
Importing pull requests from repository opatech-offline-stores to repository opatech-offline-stores...
No pull request found for repository opatech-offline-stores.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-parking on GitHub...
Admin permission was added for the team devs on repository opatech-parking
Actions disabled on repository opatech-parking
Added topic back to repository opatech-parking
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-parking to GitHub...
Importing pull requests from repository opatech-parking to repository opatech-parking...
Importing 1 pull requests to repository opatech-parking...
Importing Pull Request [ch2299] fix: eslint...
Pull Request imported successfully!
Enabled actions for repository opatech-parking
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-elosgate on GitHub...
Admin permission was added for the team devs on repository opatech-elosgate
Actions disabled on repository opatech-elosgate
Added topic integ to repository opatech-elosgate
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-elosgate to GitHub...
Importing pull requests from repository opatech-elosgate to repository opatech-elosgate...
No pull request found for repository opatech-elosgate.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository superopaland2020 on GitHub...
Admin permission was added for the team devs on repository superopaland2020
Actions disabled on repository superopaland2020
Added topic web to repository superopaland2020
Repository successfully created!
Import status: importing...
Import status: mapping...
Import status: complete!
Importing repository superopaland2020 to GitHub...
Importing pull requests from repository superopaland2020 to repository superopaland2020...
No pull request found for repository superopaland2020.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-ancar-coupon on GitHub...
Admin permission was added for the team devs on repository opatech-ancar-coupon
Actions disabled on repository opatech-ancar-coupon
Added topic back to repository opatech-ancar-coupon
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-ancar-coupon to GitHub...
Importing pull requests from repository opatech-ancar-coupon to repository opatech-ancar-coupon...
No pull request found for repository opatech-ancar-coupon.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-shopping-promotion on GitHub...
Admin permission was added for the team devs on repository opatech-shopping-promotion
Actions disabled on repository opatech-shopping-promotion
Added topic back to repository opatech-shopping-promotion
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-shopping-promotion to GitHub...
Importing pull requests from repository opatech-shopping-promotion to repository opatech-shopping-promotion...
No pull request found for repository opatech-shopping-promotion.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-utils on GitHub...
Admin permission was added for the team devs on repository opatech-utils
Actions disabled on repository opatech-utils
Added topic back to repository opatech-utils
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository Opatech-utils to GitHub...
Importing pull requests from repository Opatech-utils to repository opatech-utils...
No pull request found for repository Opatech-utils.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-authorizer on GitHub...
Admin permission was added for the team devs on repository opatech-authorizer
Actions disabled on repository opatech-authorizer
Added topic back to repository opatech-authorizer
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-authorizer to GitHub...
Importing pull requests from repository opatech-authorizer to repository opatech-authorizer...
No pull request found for repository opatech-authorizer.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-etl on GitHub...
Admin permission was added for the team devs on repository opatech-etl
Actions disabled on repository opatech-etl
Added topic back to repository opatech-etl
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: pushing...
Import status: pushing...
Import status: complete!
Importing repository opatech-etl to GitHub...
Importing pull requests from repository opatech-etl to repository opatech-etl...
Importing 1 pull requests to repository opatech-etl...
Importing Pull Request doing...
Pull Request imported successfully!
Enabled actions for repository opatech-etl
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-socket-notification on GitHub...
Admin permission was added for the team devs on repository opatech-socket-notification
Actions disabled on repository opatech-socket-notification
Added topic back to repository opatech-socket-notification
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository Opatech-Socket-Notification to GitHub...
Importing pull requests from repository Opatech-Socket-Notification to repository opatech-socket-notification...
No pull request found for repository Opatech-Socket-Notification.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Finished!
[46m[30m BITBUCKET CLOUD API LATEST UPDATES: [0m[36m https://developer.atlassian.com/cloud/bitbucket [0m
---------------------------------
Starting...
Searching for repositories in the workspace OpaTechTeam...
Found repositories: 10
Creating repository opatech-clearsale-flutter on GitHub...
Admin permission was added for the team devs on repository opatech-clearsale-flutter
Actions disabled on repository opatech-clearsale-flutter
Added topic app to repository opatech-clearsale-flutter
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech_clearsale_flutter to GitHub...
Importing pull requests from repository opatech_clearsale_flutter to repository opatech-clearsale-flutter...
No pull request found for repository opatech_clearsale_flutter.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-backoffice-desktop on GitHub...
Admin permission was added for the team devs on repository opatech-backoffice-desktop
Actions disabled on repository opatech-backoffice-desktop
Added topic app to repository opatech-backoffice-desktop
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opatech-backoffice-desktop to GitHub...
Importing pull requests from repository opatech-backoffice-desktop to repository opatech-backoffice-desktop...
No pull request found for repository opatech-backoffice-desktop.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-crawlers on GitHub...
Admin permission was added for the team devs on repository opatech-crawlers
Actions disabled on repository opatech-crawlers
Added topic back to repository opatech-crawlers
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-crawlers to GitHub...
Importing pull requests from repository opatech-crawlers to repository opatech-crawlers...
Importing 1 pull requests to repository opatech-crawlers...
Importing Pull Request Ch1192 criar crawler pa...
Pull Request imported successfully!
Enabled actions for repository opatech-crawlers
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-product-search on GitHub...
Admin permission was added for the team devs on repository opatech-product-search
Actions disabled on repository opatech-product-search
Added topic back to repository opatech-product-search
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-product-search to GitHub...
Importing pull requests from repository opatech-product-search to repository opatech-product-search...
No pull request found for repository opatech-product-search.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-shopping-theater on GitHub...
Admin permission was added for the team devs on repository opatech-shopping-theater
Actions disabled on repository opatech-shopping-theater
Added topic back to repository opatech-shopping-theater
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-shopping-theater to GitHub...
Importing pull requests from repository opatech-shopping-theater to repository opatech-shopping-theater...
No pull request found for repository opatech-shopping-theater.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository barter on GitHub...
Admin permission was added for the team devs on repository barter
Actions disabled on repository barter
Added topic barter to repository barter
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository barter to GitHub...
Importing pull requests from repository barter to repository barter...
No pull request found for repository barter.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository barter-price on GitHub...
Admin permission was added for the team devs on repository barter-price
Actions disabled on repository barter-price
Added topic barter to repository barter-price
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository barter_price to GitHub...
Importing pull requests from repository barter_price to repository barter-price...
No pull request found for repository barter_price.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-notification-center on GitHub...
Admin permission was added for the team devs on repository opatech-notification-center
Actions disabled on repository opatech-notification-center
Added topic back to repository opatech-notification-center
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-notification-center to GitHub...
Importing pull requests from repository opatech-notification-center to repository opatech-notification-center...
No pull request found for repository opatech-notification-center.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-store-integrator on GitHub...
Admin permission was added for the team devs on repository opatech-store-integrator
Actions disabled on repository opatech-store-integrator
Added topic integ to repository opatech-store-integrator
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: complete!
Importing repository opatech-store-integrator to GitHub...
Importing pull requests from repository opatech-store-integrator to repository opatech-store-integrator...
Importing 2 pull requests to repository opatech-store-integrator...
Importing Pull Request Ch3836 add new flag parameters to product...
Pull Request imported successfully!
Importing Pull Request [sc-2444] update: created new promotional rules for mega100 integration...
Pull Request imported successfully!
Enabled actions for repository opatech-store-integrator
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-app-analytics on GitHub...
Admin permission was added for the team devs on repository opatech-app-analytics
Actions disabled on repository opatech-app-analytics
Added topic app to repository opatech-app-analytics
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-app-analytics to GitHub...
Importing pull requests from repository opatech-app-analytics to repository opatech-app-analytics...
No pull request found for repository opatech-app-analytics.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Finished!
[46m[30m BITBUCKET CLOUD API LATEST UPDATES: [0m[36m https://developer.atlassian.com/cloud/bitbucket [0m
---------------------------------
Starting...
Searching for repositories in the workspace OpaTechTeam...
Found repositories: 10
Creating repository opatech-feedback on GitHub...
Admin permission was added for the team devs on repository opatech-feedback
Actions disabled on repository opatech-feedback
Added topic back to repository opatech-feedback
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-feedback to GitHub...
Importing pull requests from repository opatech-feedback to repository opatech-feedback...
No pull request found for repository opatech-feedback.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository fato-job-sample on GitHub...
Admin permission was added for the team devs on repository fato-job-sample
Actions disabled on repository fato-job-sample
Added topic bi to repository fato-job-sample
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository fato-job-sample to GitHub...
Importing pull requests from repository fato-job-sample to repository fato-job-sample...
No pull request found for repository fato-job-sample.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository bi-functions on GitHub...
Admin permission was added for the team devs on repository bi-functions
Actions disabled on repository bi-functions
Added topic bi to repository bi-functions
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository bi-functions to GitHub...
Importing pull requests from repository bi-functions to repository bi-functions...
No pull request found for repository bi-functions.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-user on GitHub...
Admin permission was added for the team devs on repository opatech-user
Actions disabled on repository opatech-user
Added topic back to repository opatech-user
Repository successfully created!
Import status: importing...
Import status: complete!
Importing repository opatech-user to GitHub...
Importing pull requests from repository opatech-user to repository opatech-user...
No pull request found for repository opatech-user.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opa-super-admin on GitHub...
Admin permission was added for the team devs on repository opa-super-admin
Actions disabled on repository opa-super-admin
Added topic app to repository opa-super-admin
Repository successfully created!
Import status: importing...
Import status: pushing...
Import status: complete!
Importing repository opa_super_admin to GitHub...
Importing pull requests from repository opa_super_admin to repository opa-super-admin...
No pull request found for repository opa_super_admin.
Updating default branch to master...
Default branch updated successfully!
---------------------------------
Creating repository opatech-shopper-2022 on GitHub...
Admin permission was added for the team devs on repository opatech-shopper-2022
Actions disabled on repository opatech-shopper-2022
Added topic app to repository opatech-shopper-2022
Repository successfully created!
Import status: importing...
Import status: importing...
Import status: complete!
Importing repository opatech-shopper-2022 to GitHub...