Azure DevOps System Access Token Scope
I'm trying to run a pipeline to clone my repos of 2 organizations. With a PAT it works well, but when I use the system access token only repos of the organization from where the pipeline runs are cloned. For…
I'm trying to run a pipeline to clone my repos of 2 organizations. With a PAT it works well, but when I use the system access token only repos of the organization from where the pipeline runs are cloned. For…
I am very new to ADO pipelines in Azure. I have a situation where I have the build ID of a pipeline run that created an artifact. I need to download this artifact in a different pipeline. In order to…
When i trying to run command az ad sp create-for-rbac --role="Contributor" --scopes="/subscription/<<Subscription ID>>" I am getting error as (MissingSubscription) The request did not have a subscription or a valid tenant level resource provider. Code: MissingSubscription Message: The request did not…
I am trying to create a variable group in an Azure DevOps project using the REST APIs and Python scripting. The API used is: `POST https://dev.azure.com/{organization}/_apis/distributedtask/variablegroups?api-version=7.0` The payload in use is attached: `vargroup_data = { "name": "MyVariableGroup", "description": "This is…
I am trying to add widgets to the standard(default) overview dashboard using the rest API (PAT). basically I want to update default overview dashboard and add widgets to it. while doing this, REST API call is adding new overview dashboard…
I'm trying to create a pipeline in Azure DevOps that would trigger every every 2nd and 4th Tuesday of the month regardless if there are changes on the git branches. This is what I have, but it's not working. trigger:…
So, when I create an Endpoint instance for inferencing, it asks me for a scoring_script.py file (which I provide, no problems), but inside of it, I have a dependency that must be met. My instance is crashing, because the image…
I am building Azure DevOps pipeline and I am trying to use .NET 7 container build target to build the image, and Docker@2 task to push it to Azure CR, using service connection. The problem is, I don't know what…
I have a pipeline that we trigger from the web interface when we want to create a release and it looks something like this: parameters: - name: release displayName: Release type: string default: No values: - No - Dev -…
I am trying to call a build pipeline from a function app. I've managed to do it with Powershell, but when using python, azure DevOps keeps giving me a 203 response and the pipeline is never run. it successfully gets…