2.0.0 • Published 9 years ago

bamboo-release-notes v2.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

bamboo-release-notes Build Status

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:pass@bamboo.mydomain.com: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

2.0.0

9 years ago

1.0.0

9 years ago