gitlab_merge_requests
Details about Gitlab merge requests
-
id
Primary key - Unique identifier for the row.
-
source_id
Foreign key - Identifier of the merge request in Gitlab
-
iid
string - IID of the merge request
-
project_id
Foreign key - ID of the project to which the merge project belongs
-
user_id
Foreign key - ID of the user who authored the merge request
-
title
string - Title of the merge request
-
state
string - State of the merge request
-
additions
number - Number of additions in the merge request
-
deletions
number - Number of deletions in the merge request
-
draft
boolean - Boolean indicating if the merge request is a draft
-
ready_for_review
date - Timestamp indicating when the merge request was marked as ready for review
-
merged_at
date - Timestamp indicating when the merge request was merged
-
closed_at
date - Timestamp indicating when the merge request was closed
-
target_branch
string - Branch the merge request will be merged into
-
source_branch
string - Branch name of the merge request
-
merge_commit_sha
string - Merge commit SHA of the merge request
-
created_at
date - Timestamp of when the merge request was created
-
updated_at
date - Timestamp of when the merge request was updated
-
open_to_merge
number - Difference (in seconds) between merged_at and created_at
-
open_to_first_review
number - Difference (in seconds) between first submitted review and merge request created_at
-
open_to_first_approval
number - Difference (in seconds) between first approved review and merge request created_at
-
source_url
string - URL of the merge request