loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

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

Sync tags when adopting repos (#26816)

Fixes #26138

Sync the tags into database when adopting repos

---------

Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: KN4CK3R <admin@oldschoolhack.me>

authored by

Zettat123
silverwind
KN4CK3R
and committed by
GitHub
98f2bf23 4544b2a9

+4
+4
services/repository/adopt.go
··· 195 195 return fmt.Errorf("updateRepository: %w", err) 196 196 } 197 197 198 + if err = repo_module.SyncReleasesWithTags(repo, gitRepo); err != nil { 199 + return fmt.Errorf("SyncReleasesWithTags: %w", err) 200 + } 201 + 198 202 return nil 199 203 } 200 204