0.0.7 • Published 3 years ago

bamboo-ci-api v0.0.7

Weekly downloads
9
License
ISC
Repository
-
Last release
3 years ago

Bamboo-CI

An Atlasian Bamboo CI interface library

Usage

const Bamboo = require('BambooCi').Bamboo;

const bamboo = new Bamboo({
  // only this is required, the rest are either not used or have sensible
  // defaults and only need to be modified if required
  hostname: "bamboo.example.com",
  username: "somename",
  password: "somepassword",
  protocol: 'https',
  port: '443',
});

const projects = await bamboo.projects();
const project = await bamboo.project('KEY');
const plan = await bamboo.plan('projectKey', 'buildKey');

The Bamboo object

Constructor

REFERENCES

This is a port of the perl module Net::Bamboo

ALSO SEE

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago