Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修复3.0模板一些bug #10757

Merged
merged 25 commits into from
Aug 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
fcd35ca
feat:流水线版本管理机制 #8161 模板常量实例化时转换成流水线常量
mingshewhe Jul 30, 2024
138535c
feat:流水线版本管理机制 #8161 模板常量实例化时转换成流水线常量
mingshewhe Jul 30, 2024
e986b17
【PAC】feat:开启PAC模式的代码库支持自动同步代码库YAML变更到蓝盾 #8130 修复没有oauth用户,执行pac流水线报错
mingshewhe Jul 31, 2024
69a79c6
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 1, 2024
9c2162c
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 1, 2024
57f8791
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 1, 2024
d53a163
feat:流水线版本管理机制 #8161 空白模板名称由Blank改成Default
mingshewhe Aug 1, 2024
6055971
【PAC】feat:开启PAC模式的代码库支持自动同步代码库YAML变更到蓝盾 #8130 修复社区版不应该有GIT代码库类型
mingshewhe Aug 1, 2024
7dd34a4
feat:工蜂MR触发器支持设置监听的action #8949 修改gitlab不触发问题
mingshewhe Aug 1, 2024
807ac11
feat:工蜂MR触发器支持设置监听的action #8949 修改gitlab不触发问题
mingshewhe Aug 2, 2024
c520098
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 2, 2024
6609449
feat:流水线版本管理机制 #8161 修复T_PIPELINE_SETTING表dead lock
mingshewhe Aug 2, 2024
0a55a81
bug:流水线实例复制功能没有复制相应实例的参数值 #10580
mingshewhe Aug 3, 2024
3e34bd3
bug:流水线实例复制功能没有复制相应实例的参数值 #10580
mingshewhe Aug 3, 2024
d6e18e6
feat:流水线版本管理机制 #8161 修复T_PIPELINE_SETTING表dead lock
mingshewhe Aug 3, 2024
1b259d0
bug:流水线实例复制功能没有复制相应实例的参数值 #10580 模板参数保存时清理无用下拉框数据
mingshewhe Aug 5, 2024
a312c4c
feat:工蜂MR触发器支持设置监听的action #8949 修复webhook request 保存时event_message超长
mingshewhe Aug 5, 2024
fdd6614
feat:流水线版本管理机制 #8161 修复T_PIPELINE_SETTING表dead lock
mingshewhe Aug 5, 2024
6c1d317
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 5, 2024
79cb611
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 5, 2024
d704b67
Revert "bug:流水线实例复制功能没有复制相应实例的参数值 #10580"
mingshewhe Aug 5, 2024
bca3ec2
Revert "bug:流水线实例复制功能没有复制相应实例的参数值 #10580"
mingshewhe Aug 5, 2024
628202e
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 5, 2024
a41f1d0
feat:新建/编辑流水线时支持调试流水线 #8164 修复构建历史区分源材料分支和触发分支搜索
mingshewhe Aug 5, 2024
c306839
feat:新建/编辑流水线时支持调试流水线 #8164 修复复制模板实例缺少templateVersion字段
mingshewhe Aug 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat:工蜂MR触发器支持设置监听的action #8949 修复webhook request 保存时event_message超长
mingshewhe committed Aug 5, 2024
commit a312c4c4192b35010766d8d21d8dc64018a4d44c
Original file line number Diff line number Diff line change
@@ -79,7 +79,13 @@ class WebhookRequestService(
externalId = matcher.getExternalId(),
eventType = matcher.getEventType().name,
triggerUser = matcher.getUsername(),
eventMessage = matcher.getMessage() ?: "",
eventMessage = matcher.getMessage()?.let {
if (it.length >= 128) {
it.substring(0, 128)
} else {
it
}
} ?: "",
repositoryType = scmType.name,
requestHeader = request.headers,
requestParam = request.queryParams,