我正在尝试创建一个 Youtrack 工作流程,当当前问题积压时,仅允许特定角色将看板状态编辑为准备拉动。我不太能够让它正常工作,不断抛出异常,但我无法阅读完整的异常。
我试图创建当前的工作流代码:
var entities = require('@jetbrains/youtrack-scripting-api/entities');
var workflow = require('@jetbrains/youtrack-scripting-api/workflow');
exports.rule = entities.Issue.onChange({
title: workflow.i18n('Block change in Kanban stage for issues that are in backlog'),
guard: function(ctx) {
return ctx.issue.isReported && ctx.issue.fields.isChanged(ctx.KanbanState);
},
action: function(ctx) {
var issue = ctx.issue;
if (!ctx.user.hasRole('project-admin', ctx.project)) {
workflow.message('U dont have the correct permissions to do this');
ctx.KanbanState = ctx.KanbanState.Blocked;
}
},
requirements: {
Stage: {
type: entities.State.fieldType
},
KanbanState: {
name: 'Kanban State',
type: entities.EnumField.fieldType,
ReadyToPull: {
name: 'Ready to pull'
},
Blocked: {}
}
}
});
其中大部分是看板更改工作流程的副本,当看板状态未设置为“Ready-to-Pull”时,该工作流程会阻止将问题移至新阶段。我基本上想要完全相同,但我只想允许项目管理员在当前阶段为“积压”时将看板状态更改为“准备拉动”。当前代码目前仅检查权限,但我已经开始陷入困境。