Skip to content

Commit

Permalink
Merge pull request #21 from gardener-community/major-versions-in-tracker
Browse files Browse the repository at this point in the history
Track way more releases on our side
  • Loading branch information
JensAc authored Feb 21, 2023
2 parents 9b8459b + a008eeb commit e4047d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/releaser/tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ func getReleasesToTrack(cfg SrcConfiguration, dst DstConfiguration, client *gith

// As we release all charts in the 23ke-charts repo, we need to list way more releases.
// Let's take the last 300 for now
ourReleases := make([]*github.RepositoryRelease, 300)
for i := 1; i <= 3; i++ {
ourReleases := make([]*github.RepositoryRelease, 10000)
for i := 1; i <= 100; i++ {
pageReleases, _, _ := client.Repositories.ListReleases(context.Background(),
dst.Owner,
dst.Repo,
Expand Down

0 comments on commit e4047d6

Please sign in to comment.