Skip to content

Instantly share code, notes, and snippets.

@firebait
firebait / jiraTicketsForRelease.js
Last active May 30, 2019 21:05
Gist generates a URL that will find the list of JIRA tickets for a particular release. UPDATE YOUR CREDENTIALS AND RELEASE BRANCH.
const https = require('https');
//////////// UPDATE THESE VALUES /////////////
const releaseBranch = '<RELEASE BRANCH>';
const githubUsername = '<YOUR USERNAME>';
const githubPassword = '<YOUR PASSWORD>'
//////////////////////////////////////////////
const stories = new Set();
let processedRepos = 0;