-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(AzureDevOps.WorkItemClone.ConsoleUI): add support for YAML confi…
…guration files refactor(AzureDevOps.WorkItemClone.ConsoleUI): improve file handling and error messages fix(AzureDevOps.WorkItemClone.ConsoleUI): ensure file extension matches selected format feat(WorkItemInitCommand.cs): add support for YAML config format refactor(WorkItemInitCommand.cs): replace direct file operations with FileStore methods for better abstraction chore(launchSettings.json): update commandLineArgs to use YAML config chore(configuration.json): remove unnecessary newline at end of file feat(configuration.yaml): add new YAML configuration file for testing YAML config support
- Loading branch information
Showing
9 changed files
with
150 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 16 additions & 3 deletions
19
AzureDevOps.WorkItemClone.ConsoleUI/Commands/WorkItemCloneCommandSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
CachePath: "./cache" | ||
controlFile: "ADO_TESTProjPipline_V03.json" | ||
targetAccessToken": null | ||
targetOrganization": "nkdagility-preview" | ||
targetProject": "ABB-Demo" | ||
targetParentId": 540 | ||
templateAccessToken": null | ||
templateOrganization": "ABB-MO-ATE" | ||
templateProject": "ABB Traction Template" | ||
templateParentId": 212315 | ||
targetQuery": | | ||
SELECT | ||
[Custom.Product], | ||
[System.Title], | ||
[System.Description], | ||
[Custom.DeadlineDate], | ||
[System.AreaPath], | ||
[System.AssignedTo], | ||
[System.State], | ||
[Custom.Notes], | ||
[System.WorkItemType], | ||
[Custom.TRA_Milestone] | ||
FROM workitemLinks | ||
WHERE | ||
( | ||
[Source].[System.Id] = 000000 | ||
OR [Source].[System.Parent] = 000000 | ||
OR [Source].[System.Tags] CONTAINS 'xxxx xxxx' | ||
) | ||
AND ( | ||
[System.Links.LinkType] = 'System.LinkTypes.Hierarchy-Forward' | ||
) | ||
AND ( | ||
[Target].[System.Parent] = 000000 | ||
OR [Target].[System.Tags] CONTAINS 'xxxx xxxx' | ||
) | ||
ORDER BY [Custom.DeadlineDate] | ||
MODE (Recursive) | ||
targetQueryTitle": "Project-@RunName - @projectTitle" | ||
targetQueryFolder": "Shared Queries" |