how to automate deployment process by triggering a deployment using a combination of a pipeline name and a release number? [closed] - azure-devops

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 days ago.
Improve this question
Need automation help for our deployment process by triggering a deployment using a combination of a pipeline name and a release number
our deployment process by triggering a deployment using a combination of a pipeline name and a release number

Related

How can I schedule shutdown of my azure Virtual machine scale set instances using Terraform? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
I have 2 azure virtual machine scale sets (each with 2 instances) deployed. One is for dev and other for testing.
I would like to schedule shutdown of the testing vmss everyday after working hours inorder to cut costs.
How can this be done via terraform ?
I initially tried using azurerm_dev_test_global_vm_shutdown_schedule, but looks like this works only for vm and not vmss.

How can Dependabot automatically merge its pull requests based on Azure pipelines build status? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
If Dependabot is enabled to automatically bump dependencies and create pull requests to 'master', how these pull requests can be automated so they are automatically approved and merged if Dependabot's branch passes Azure Devops build pipeline?

Building services for Gitlab [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
How to create my own service and add it into gitlab? Services like jira, jenkins are present under integrations in Gitlab. How can I create a service to add it under gitlab Integrations and make it useful for every one's use?
This is called "Project services", and it has a "contribution" section.
It is based on gitlab-org/gitlab-foss, folder app/models/project_services, where you can add your own service.

How to execute exe in VSTS Release pipeline empty process [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I have .Net Solution project it has multiple projects few of them are console application. I want to execute one of the console application during my release pipeline as task under empty process.
How can I refer the .exe from my build artifact?
Add "Command Line" task during the release pipeline, in the "Tool" field specify the .exe of the console application from your artifact location, for example: "$(Agent.ReleaseDirectory)\Tools\ConsoleApp.exe".

How to I create Jira tickets for broken Jenkins pipelines? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to automate the creation of Jira tickets for each broken pipeline build in Jenkins.
How can I do this? Does anyone has a working groovy example to to use inside Jenkinsfile?
One possible solution can be wrapping all sensitive steps in try-catch. And use Jira REST API for creating of a new tickets.