4

Azure Pipelines shows the pipeline run as the last commit message. I want to override that since my pipeline is triggered by a pipeline completion trigger and I want to note what it is that triggered when I am looking at the list of runs.

Is that possible?

I am talking about updating the description and not updating the build number

Archimedes Trajano
  • 35,625
  • 19
  • 175
  • 265
  • Potentially duplicate of: https://stackoverflow.com/a/37048559/736079 – jessehouwing Dec 07 '21 at 17:46
  • 1
    Does this answer your question? [Azure Devops yaml deployment pipelines shows unwanted message / description](https://stackoverflow.com/questions/70171440/azure-devops-yaml-deployment-pipelines-shows-unwanted-message-description) – Vince Bowdren Dec 07 '21 at 19:40

2 Answers2

3

You can add in your pipeline yaml parameters:

name: MyName
appendCommitMessageToRunName: false

https://learn.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/pipeline?view=azure-pipelines#pipeline-jobs

Jeremy Caney
  • 7,102
  • 69
  • 48
  • 77
Raphael
  • 31
  • 2
-1

You can't update the description. The only thing you can do is generate a more useful buildnumber.

jessehouwing
  • 106,458
  • 22
  • 256
  • 341