Skip to content
This repository has been archived by the owner on Sep 6, 2018. It is now read-only.

Latest commit

 

History

History
23 lines (14 loc) · 917 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 917 Bytes

JIRATicketReferencesInBuild

This PowerShell script, produces a text file containing all the JIRA ticket reference numbers for the current sprint/release. It works well with the automated deployment/continous integration tool TeamCity.

The end result is that you can visit your UAT/QA website at http://www.yourwebsitehere.com/releaselog.txt and see a file similar to the sample one https://github.com/paulness/JIRATicketReferencesInBuild/blob/master/releaselog.txt.

Prerequisites

  • You must be using GITHUB, have access to the GIT CLI and Powershell

  • The first line of included commits must be of the form '([A-Za-z]+-\d+)', other commits are ignored

    e.g.
    NAVBAR-344
    Updated navbar

  • Release branches in GITHUB must be of the form, "the word release, hyphen, numerical release number" (release-([0-9.]+))$

    e.g.
    release-16.5

Script is:
_generate-releaselog-jiratickets.ps1