要保留GitLab合并请求的被指派历史记录,您可以通过GitLab API来获取合并请求的详细信息,并将其保存在一个自定义的数据结构中,以便后续使用。
以下是一个使用Python和GitLab API的示例代码,可以获取合并请求的详细信息,包括被指派的历史记录:
import requests
# GitLab API endpoint
api_url = "https://gitlab.example.com/api/v4"
# Personal access token for authentication
token = "YOUR_PERSONAL_ACCESS_TOKEN"
# Project ID and Merge Request ID
project_id = "YOUR_PROJECT_ID"
merge_request_id = "YOUR_MERGE_REQUEST_ID"
# API endpoint for getting merge request details
endpoint = f"{api_url}/projects/{project_id}/merge_requests/{merge_request_id}"
# Header for authentication
headers = {
"PRIVATE-TOKEN": token
}
# Send GET request to the GitLab API
response = requests.get(endpoint, headers=headers)
# Check if the request was successful
if response.status_code == 200:
# Parse the JSON response
merge_request = response.json()
# Get the assignee history
assignee_history = merge_request["assignee"]
# Print the assignee history
for assignee in assignee_history:
print(f"Assigned to: {assignee['name']} at {assignee['created_at']}")
else:
print(f"Failed to get merge request details. Status code: {response.status_code}")
请将上述代码中的以下值替换为您自己的信息:
api_url
: 您的GitLab实例的API URL。token
: 您的个人访问令牌,用于身份验证。project_id
: 项目的ID。merge_request_id
: 合并请求的ID。运行此代码将打印出合并请求的被指派历史记录,包括指派人和指派时间。
请注意,您需要安装Python的requests
库来运行此代码。您可以使用以下命令安装它:
pip install requests
希望这可以帮助到您!