porting all github actions from bluesky-social/indigo to tangled CI
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix build

+5 -1
+1
bgs/fedmgr.go
··· 33 } 34 35 func NewSlurper(db *gorm.DB, cb IndexCallback, ssl bool) (*Slurper, error) { 36 s := &Slurper{ 37 cb: cb, 38 db: db,
··· 33 } 34 35 func NewSlurper(db *gorm.DB, cb IndexCallback, ssl bool) (*Slurper, error) { 36 + db.AutoMigrate(&SlurpConfig{}) 37 s := &Slurper{ 38 cb: cb, 39 db: db,
+4 -1
labeler/service.go
··· 111 log.Infof("found labelmaker repo: %s", head) 112 } 113 114 - slurp := bgs.NewSlurper(db, s.handleBgsRepoEvent, useWss) 115 s.bgsSlurper = slurp 116 117 go evtmgr.Run()
··· 111 log.Infof("found labelmaker repo: %s", head) 112 } 113 114 + slurp, err := bgs.NewSlurper(db, s.handleBgsRepoEvent, useWss) 115 + if err != nil { 116 + return nil, err 117 + } 118 s.bgsSlurper = slurp 119 120 go evtmgr.Run()