Skip to content

ahelmberger/bamboo-release-notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Creates release notes in Markdown format from a Bamboo build.

Resources

License

Stars

Watchers

Forks

Packages

No packages published