skip to Main Content

How to get data from Azure Workflow Trigger Histories – List

I have an Azure Logic App that has failed actions (the number is too big so I won't resubmit them manually). I tried wtih the Azure documentation to list all of the operations: https://learn.microsoft.com/en-us/rest/api/appservice/workflow-trigger-histories/list?view=rest-appservice-2023-12-01&tabs=HTTP GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/hostruntime/runtime/webhooks/workflow/api/management/workflows/{workflowName}/triggers/{triggerName}/histories?api-version=2023-12-01 However the response seems…

VIEW QUESTION

zero new lines while I do sonarscan on pull request using azure pipeline for my dot net code

- script: | git config --global http.https://dev.azure.com/<company>/.extraheader "AUTHORIZATION: bearer $(System.AccessToken)" # Now fetch the PR source branch using the token git fetch origin $(System.PullRequest.SourceBranch):$(System.PullRequest.SourceBranch) git checkout $(System.PullRequest.SourceBranch) displayName: 'Fetch and Checkout PR Source Branch' env: # This exposes the system…

VIEW QUESTION
Back To Top
Search