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.

update sonar

+7
+7
cmd/sonar/sonar.go
··· 109 109 case xe.RepoCommit != nil: 110 110 eventsProcessedCounter.WithLabelValues("repo_commit", s.SocketURL).Inc() 111 111 return s.HandleRepoCommit(ctx, xe.RepoCommit) 112 + case xe.RepoSync != nil: 113 + eventsProcessedCounter.WithLabelValues("sync", s.SocketURL).Inc() 114 + now := time.Now() 115 + s.ProgMux.Lock() 116 + s.Progress.LastSeq = xe.RepoSync.Seq 117 + s.Progress.LastSeqProcessedAt = now 118 + s.ProgMux.Unlock() 112 119 case xe.RepoIdentity != nil: 113 120 eventsProcessedCounter.WithLabelValues("identity", s.SocketURL).Inc() 114 121 now := time.Now()