From bb957b5c81a6a815424cf500d6cdca0679d56135 Mon Sep 17 00:00:00 2001 From: "Martin Hinshelwood nkdAgility.com" Date: Thu, 25 Jul 2024 10:43:27 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20(README.md):=20update=20example?= =?UTF-8?q?=20work=20item=20fields=20to=20include=20description=20and=20ac?= =?UTF-8?q?ceptance=20criteria?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add `System.Description` and `Microsoft.VSTS.Common.AcceptanceCriteria` fields to the example work item JSON. This provides a more comprehensive example and ensures that users understand how to include these additional fields in their work items. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f9ffff..e1e6af7 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,9 @@ The `fields` are the fields that will be used to create the work item. You can u "System.Title": "Technical specification", "Custom.Product": "CC", "Microsoft.VSTS.Scheduling.Effort": 12, - "Custom.TRA_Milestone": "E0.1" + "Custom.TRA_Milestone": "E0.1", + "System.Description": "${fromtemplate}", + "Microsoft.VSTS.Common.AcceptanceCriteria": "${fromtemplate}" } }, { @@ -139,6 +141,8 @@ The `fields` are the fields that will be used to create the work item. You can u "Custom.Product": "", "Microsoft.VSTS.Scheduling.Effort": 2, "Custom.TRA_Milestone": "E4.8" + "System.Description": "${fromtemplate}", + "Microsoft.VSTS.Common.AcceptanceCriteria": "${fromtemplate}" } ] ```