Skip to main content
Skip table of contents

How to view Tag based Azure DevOps Releases in Jira

Azure DevOps for Jira supports Release Tags, allowing effortless tracking of releases triggered by tags directly from Jira.

While this can vary depending on your Azure DevOps setup, below is an example of how Release Tags work.

  1. The following is included in the YAML file of our repository, which ensures tags beginning with 'v' trigger our pipeline.

    CODE
      # This is the trigger that includes the tags
    trigger:
      tags:
        include:
          - v*
  2. Next we will create a commit on our main branch, being sure to include the Jira issue key (in this case AFJT-9):

    image-20250906-223529.png

  3. Now we will create a new tag, following our naming convention, so the pipeline is triggered:

    image-20250906-223603.png
  4. The pipeline automatically runs:

    image-20250906-223640.png
  5. Based on our release set up below, the update has been automatically released to PROD:

    image-20250906-222847.png
    image-20250906-223730.png
  6. From the Jira issue, refreshing the page if necessary, you should now see the release listed within the Development panel:

    image-20250906-223832.png
    image-20250906-224024.png

There must be an existing tag present for this to work. The plugin checks the previous tag, so if you’re setting this up for the first time, ensure there’s a tag created prior to creating the tag to trigger your pipeline.

Updated:

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.