Skip to content

Commit

Permalink
fix: fix CompareURL
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke committed May 26, 2023
1 parent 42d4452 commit aba8578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func (ctrl *Controller) handlePackage(ctx context.Context, logE *logrus.Entry, p
RepoName: repoName,
NewVersion: newVersion,
CurrentVersion: currentVersion,
CompareURL: fmt.Sprintf(`[compare](https://github.com/%s/%s/compare/%s...%s)`, repoOwner, repoName, currentVersion, newVersion),
CompareURL: fmt.Sprintf(`https://github.com/%s/%s/compare/%s...%s`, repoOwner, repoName, currentVersion, newVersion),
ReleaseURL: fmt.Sprintf(`https://github.com/%s/%s/releases/tag/%s`, repoOwner, repoName, newVersion),
}

Expand Down

0 comments on commit aba8578

Please sign in to comment.