User Profile
Unaihuete
Learn Expert
Joined 5 years ago
User Widgets
Recent Discussions
Re: Create Azure Rule to automate process between parent and child work items
The link given is C# project that manages the work items using the ADO API. I would forget about it as it is too complex and the repo is archived. There are lot of action/triggers for Azure DevOps on Azure Logic Apps and Power Automate. Here you can see an example for Power Automate https://www.youtube.com/watch?v=SK86TLZQw9A&t=411s And here an example for Logic App: https://www.red-gate.com/simple-talk/devops/tools/automating-azure-devops-logic-apps/7.2KViews0likes0CommentsRe: Azure DevOps - Custom reference field on a form
Hello scsvel have you ever tried the ADO process template custom rules? https://learn.microsoft.com/en-us/azure/devops/organizations/settings/work/inheritance-process-model?view=azure-devops&tabs=agile-process#custom-rules-and-system-rules You can automatically define fields (copy, modify, automate, ...) based on work item activity (states moved, field value entered,...)1KViews0likes0CommentsRe: Download Azure Devops Pipeline logs and send attachment to Jira
Hello, I do not think marketplace would be available for this scenario. I would create a Bash/Powershell script (or other), that uploads the file using Jiraยดs REST API. https://confluence.atlassian.com/jirakb/how-to-add-an-attachment-to-a-jira-issue-using-rest-api-699957734.html1.6KViews0likes0CommentsRe: Is there a way to have a free access to Azure DevOps for teaching purposes (more than 5 students)?
Hello alexandrenedelec , in order to get free private/MS hosted agent, you need to send an email: To request your free grant, send an email to azpipelines-freetier@microsoft.com and provide the following details clearly: Your name Azure DevOps organization for which you are requesting the free grant Whether you need the free grant for public projects, private projects, or both Links to the repositories that you plan to build (public projects only) Brief description of your project (public projects only) I would ask on the same email if more access licenses can be obtained. When I teach at universities, I normally demo my solutions on a public project, and let them create their own organizations for labs/exercises (due to the 5 basic license limits).1.2KViews0likes0CommentsRe: Azure Devops delivery plans
hello DavidCory could you be missing the following settings for the plan (for the roll up feature)? https://learn.microsoft.com/en-us/azure/devops/boards/plans/add-edit-delivery-plan?view=azure-devops#choose-fields-to-appear-on-cards You should also define for each team the work item level you are interested on:1.9KViews0likes1CommentRe: Velocity widget discrepancy vs Sprint
Pawel_Wielgos Exactly as Sherry_Hooe is mentioning, you can modify the chart behaviour as explained here in docs: https://learn.microsoft.com/en-us/azure/devops/report/dashboards/team-velocity?view=azure-devops#configure-the-velocity-widget1.4KViews0likes0CommentsRe: team velocity chart
saurabh65 Hello, I do not have any samples, and it would not be easy, but the Analytics feature of Azure DevOps lets you export all data and create your own reports using for example PowerBI https://learn.microsoft.com/en-us/azure/devops/report/powerbi/what-is-analytics?view=azure-devops1.3KViews0likes0CommentsRe: Manually sort "Assigned to Me" view in Work items
holmes04 I am sorry, but do not think the product is designed for individual/person-based planning, tools are given for team/project planning (which normally is aligned with individual) ๐ Scrum masters normally prioritize features, decompose them into user stories with the help of engineering teams, and define priority/effort for user stories too, so that they can be distributed in Sprint (based on priority/effort). All the default views on ADO are based on team planning/prioritizing (backlog/boards/sprints). The only option to nicely see them all based on feature priority (company): The other option is using Power Automate (office 365) or Logic Apps (azure) to automate the "copy" of those items and status to your own Azure DevOps Project. Honestly, I would never do it, it is over-engineering.3.3KViews0likes0CommentsRe: JFrog Artifacts move to azure artifacts
- pipeline artifacts do not get overwritten --> every pipeline execution keeps files from that execution (drop folder or any other custom folder) https://learn.microsoft.com/en-us/azure/devops/pipelines/publish-pipeline-artifact?view=azure-devops&tabs=yaml - for artifact feeds (universal packages) https://learn.microsoft.com/en-us/azure/devops/pipelines/artifacts/universal-packages?view=azure-devops&tabs=yaml what error do you get?5KViews0likes1CommentRe: How to save Azure Pipeline definition (Json) to another git repo
Hello, I would honestly migrate YAML pipelines for that, they are exactly meant to keep, track and control changes by using Git Source Control. You could probably automate the JSON file extract/import using ADO Rest API in pipelines, but there is no way to control how changes will be applied. It would be overengineering too much. Azure Pipelines YAML have been designed for it.888Views0likes0CommentsRe: Completely migrate DevOps Organisation to new Tenant and Subscription
Hello Benjamin Graus , All the migrations I have done in the past involved Support teams. It could be really delicate in terms of user account (in new and old tenant), user/team related queries, dashboard, boards, permissions... and service connections. Support could help you link new user acccounts with old ones, not to loose track of history changes. My guess is you need to recreate every service connection (that is what I remember, did my last one 4 years ago), that cannot be migrated to new AD. I would involve Support 100% in the process.38KViews1like0CommentsRe: Create Azure Rule to automate process between parent and child work items
Hello kadedev , I would take a look at Power Automate (office365) or Logic Apps (Azure), for work item flow automation. I created really interesting scenarios in the past with customers using those tools. kind regards, Unai7.4KViews0likes2CommentsRe: JFrog Artifacts move to azure artifacts
Hello bharathsimha , I think you may be mixing concepts, which happens quite frequently: Azure pipeline artifacts: is used for retaining files you create/modify during pipeline execution. For example, CI pipeline created a compiled website and publishes as artifacts, then CD pipeline downloads it to deploy to desired target. I think you are using this one, as it has a drop folder default option. Azure Artifacts: the package feed service in Azure DevOps. The pushing to feed operation depend on the packaging technology, here you have an example for nuget: https://learn.microsoft.com/en-us/azure/devops/pipelines/artifacts/nuget?toc=%2Fazure%2Fdevops%2Fartifacts%2Ftoc.json&bc=%2Fazure%2Fdevops%2Fartifacts%2Fbreadcrumb%2Ftoc.json&view=azure-devops&tabs=yaml#publish-a-package For any kind of package this one can be used https://learn.microsoft.com/en-us/azure/devops/pipelines/artifacts/universal-packages?toc=%2Fazure%2Fdevops%2Fartifacts%2Ftoc.json&bc=%2Fazure%2Fdevops%2Fartifacts%2Fbreadcrumb%2Ftoc.json&view=azure-devops&tabs=yaml#publish-a-universal-package5.1KViews0likes4CommentsRe: DevOps and Jira Cloud integration plugins?
Hello Sean_Cheng , The only integration I worked with are these ones: Connect Jira with ADO Pipelines, track deployments related to Jira items: https://devblogs.microsoft.com/devops/azure-pipelines-integration-with-jira-software/ Integrate Jira with ADO git Repos, keep tracking on code changes related to Jira items: https://marketplace.atlassian.com/apps/1221787/azure-git-listener-for-jira?tab=overview&hosting=cloud From work item/ticket related automation, I would go for Power Automate tool in office 365, it lets you easily automate many workflows inside same tools or between tools. many operations are supported. Example: Unai ๐4KViews1like1CommentRe: Manually sort "Assigned to Me" view in Work items
Hello, holmes04 what kind of "view" are you using? Boards, Backlog, Sprints or Queries? When using Backlogs or Boards, ADO keeps the priority listing when showing the work items: backlog boards The query "assigned to me" does not keep priority ordering by default. I would go for the backlog/boards option, you can easily drag and drop to different sprints or change the priority order.3.3KViews0likes2CommentsRe: Need help with Azure topics
Hello MKar10 , These are topics we cover on the AZ-204 exam. The following learning paths are related to the exam preparation course: https://learn.microsoft.com/en-gb/training/courses/az-204t00?wt.mc_id=esi_m2l_content_wwl#study-guide The labs used on our courses can also be found here: https://microsoftlearning.github.io/AZ-204-DevelopingSolutionsforMicrosoftAzure/ the only service not covered by the exam is Logic Apps. Here you can find Microsoft Learn modules related to it: https://learn.microsoft.com/en-us/training/browse/?filter-products=logic%20app&products=azure-logic-apps1.6KViews0likes0CommentsRe: SAST & DAST with Azure DevOps
Hello, There are so many options available for it on the ADO marketplace, tools like Mend (for dependency scanning), Sonarqube/Sonarcloud (SAST), Owasp Zap (DAST),... You can use the ones working better for you (in terms of pricing and support). During Ignite the following was announced: - Defender for DevOps : reviews the security related setup of your ADO organizations and GH organizations. - GitHub Advanced Security (GHAS) for ADO, which offers Secret scanning, Dependabot (for dependency scanning and CodeQL for SAST https://devblogs.microsoft.com/devops/integrate-security-into-your-developer-workflow-with-github-advanced-security-for-azure-devops/ For an example using OWASP ZAP in ADO: https://devblogs.microsoft.com/premier-developer/azure-devops-pipelines-leveraging-owasp-zap-in-the-release-pipeline/28KViews1like0CommentsRe: Handle the tasks in a sprint
Hello ๐ If you are looking to scale the use of Azure Boards, for example, using it for multiple Scrum/Agile teams, long/short-term plannin, handleling teams/areas.... I find this SAFE (scaled agile framework) documentation really helpful: https://learn.microsoft.com/en-us/azure/devops/boards/plans/safe-concepts?view=azure-devops&tabs=agile-process1.1KViews0likes0Comments
Groups
Recent Blog Articles
No content to show