Skip to content

Commit 892b715

Browse files
committed
Added column destination to the table bitbucket_pull_request Closes #116
1 parent 0490afc commit 892b715

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

bitbucket/table_bitbucket_pull_request.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@ func tableBitbucketPullRequest(_ context.Context) *plugin.Table {
4848
Description: "A current state of the pull request. Can be one of \"MERGED\", \"SUPERSEDED\", \"OPEN\" and \"DECLINED\".",
4949
Type: proto.ColumnType_STRING,
5050
},
51+
{
52+
Name: "destination",
53+
Description: "Details of the target branch where the pull request is intended to be merged, including branch name, latest commit metadata, and destination repository information.",
54+
Type: proto.ColumnType_JSON,
55+
Transform: transform.FromField("Destination"),
56+
},
5157

5258
// other fields
5359
{

0 commit comments

Comments
 (0)