bamboo-release-notes
v2.0.0
Published
Creates release notes in Markdown format from a Bamboo build.
Downloads
6
Readme
bamboo-release-notes
Creates release notes in Markdown format from a Bamboo build.
Install
npm install --save bamboo-release-notes
Example
var bambooReleaseNotes = require('bamboo-release-notes');
bambooReleaseNotes({
bambooServer: 'http://user:[email protected]:8085',
buildPlan: 'PLAN-KEY',
buildNumber: '123'
}).then(function (result) {
console.log(result); // Prints the Markdown document
});
Note: This module assumes that fetch
and Promise
are available in the global namespace. I suggest to import the es6-promise and isomorphic-fetch modules, so it works both on the server as well as in the browser.
License
MIT