pass variable into Azure DevOps Release pipeline from github actions trigger

Copper Contributor
 
I am trying to trigger the release pipeline in the ADO from the GitHub actions. While triggering I am passing some variables to the release pipeline but the variables are not assigning to the pipeline.

the below command i am using in the Git Actions

 

- name: Azure Pipelines Action
uses: Azure/pipelines@v1
with:
azure-devops-project-url: https://dev.azure.com/JDADevOps/JDA%20Identity%20Management
azure-pipeline-name: 'SAS-Windows-OU-Validate'
azure-devops-token: ${{ steps.azureDevOpsKey.outputs.AzuredevopsPAT }}
azure-pipeline-variables: '{"regionCode": "DL"}'

 

in the Release pipeline i was giving -regionCode $(regionCode) in the arguments section to fetch the variable value

0 Replies