如何在 Azure DevOps 中将字段值从父工作项传递给子工作项

How to pass value of a field from Parent Work Item to Child in Azure DevOps

我需要编写一条规则,将字段的值从 Azure DevOps 中的父工作项 (Epic) 复制到子工作项 (User Story)。但是我找不到在流程中使用工作项规则设置的方法。

设置了父级后,如何在工作项中设置字段。

没有 built-in 功能可以在不同的工作项之间传递值。该规则仅适用于同一工作项。例如,我们可以设置一个复制规则,在同一个工作项中将值从一个字段复制到另一个字段。

详情见Rules and rule evaluation and Add a rule to a work item type

我能想到的唯一方法是通过调用 Get Work Item REST API to get the value of the filed from parent work item, then calling the Work Items - Update REST API 编写脚本来更新子工作项。然后在父工作项更新后设置 运行 脚本的触发器。