0.0.1 • Published 6 years ago

@ball6847/stride-notification v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Stride Notification

Build Status npm version docker image

Simple cli application for sending stride-notification, useful in CI environment

Installation

npm install -g @ball6847/stride-notification

Usage

Usage: stride-notification [options]

Options:
  -V, --version         output the version number
  --token <token>       stride app token
  --cloud-id <cloudId>  stride cloud id
  --room-id <roomId>    stride room id
  --project <project>   name of project
  --status <status>     job status, success or failure
  --ref <ref>           job reference id
  --url <url>           job url the developer can click to see detail about the job
  --branch <branch>     git branch name
  -h, --help            output usage information

Example

stride-notification \
  --token "<your token>" \
  --cloud-id "<stride cloud id>" \
  --room-id "<stride room id>" \
  --project "my-awesome-project" \
  --branch "master" \
  --ref "123" \
  --url "http://www.google.com/" \
  --status "success"

CREDITS