ci: setup unit tests, linting

This commit is contained in:
Julian Tölle 2024-08-03 03:04:49 +02:00
parent e0b1e2221d
commit 4dfc8e9654
3 changed files with 63 additions and 3 deletions

View file

@ -200,6 +200,9 @@ func reconcileReleasePR(ctx context.Context, forge rp.Forge, changesets []rp.Cha
}
localCommit, err := repo.CommitObject(releaseCommitHash)
if err != nil {
return err
}
diff, err := localCommit.PatchContext(ctx, remoteCommit)
if err != nil {