Skip to content

Commit

Permalink
Merge branch 'main' of github.com:terramate-io/terramate into i4k-out…
Browse files Browse the repository at this point in the history
…puts-init

Signed-off-by: i4k <[email protected]>
  • Loading branch information
i4ki committed Jan 10, 2025
2 parents b204cf1 + 1b82bab commit a0a0acd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ Given a version number `MAJOR.MINOR.PATCH`, we increment the:
- The `--include-output-dependencies` flag includes the output dependencies in the execution order.
- The `--only-output-dependencies` flag only includes the output dependencies in the execution order.

### Fixed

- Fix the sync of `base_branch` information in the Terramate Cloud deployment.

## v0.11.7

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions cmd/terramate/cli/cloud.go
Original file line number Diff line number Diff line change
Expand Up @@ -1123,8 +1123,8 @@ func (c *cli) newBitbucketReviewRequest(pr *bitbucket.PR) *cloud.ReviewRequest {
Login: pr.Author.DisplayName,
AvatarURL: pr.Author.Links.Avatar.Href,
},
Branch: c.cloud.run.metadata.BitbucketPipelinesBranch,
BaseBranch: c.cloud.run.metadata.BitbucketPipelinesDestinationBranch,
Branch: pr.Source.Branch.Name,
BaseBranch: pr.Destination.Branch.Name,
ChangesRequestedCount: changesRequestedCount,
ApprovedCount: approvalCount,
ReviewDecision: reviewDecision,
Expand Down

0 comments on commit a0a0acd

Please sign in to comment.