-
Suggestion
-
Resolution: Unresolved
-
1
-
6
-
Issue Summary
Currently if the customers try to send Deployment information from Azure DevOps from Jira it's failing if the YAML follows the format documented at the following link:
...
environment:
name: 'smarthotel-dev'
...
It only works if you follow the next format:
https://learn.microsoft.com/en-us/azure/devops/pipelines/process/deployment-jobs?view=azure-devops
... environment: staging ...
Steps to Reproduce
- Create A YAML file in Azure DevOps that includes a block like the follwoing one:
...
environment:
name: 'smarthotel-dev'
...
- Connect Azure DevOps with Jira
- Trigger a Deployment Job in Azure DevOps that includes references to issue key in Jira
Expected Results
The deployment should be shown
Actual Results
No deployment data is shown
Workaround
Use the following format:
... environment: staging ...