/jira-slack

Web entrypoint application that notifies to Slack when who wrote a new comment into an issue upon JIRA.

Primary LanguageJavaScript

jira-slack.js

Web entrypoint application that notifies to Slack when who wrote a new comment into an issue upon JIRA.

image

SYNOPSIS

$ git clone https://github.com/ytnobody/jira-slack.git
$ cd jira-slack
$ npm install
$ PORT=5000 \
  JIRA_TEAM=myteamname \
  SLACK_WEBHOOK_URL=https://hooks.slack.com/... \
  SLACK_CHANNEL="#jira-comments" \
  npm start

ENV

JIRA_TEAM [required]

sub-domain of your JIRA team

https://[here].atlassian.net/

SLACK_WEBHOOK_URL [required]

Slack webhook url that your own

SLACK_CHANNEL [default=#random]

Destination channel for posting messages

PORT [default=3400]

Port for waiting requests

SEE ALSO