GeekFactory

int128.hatenablog.com

JIRAの更新をSlackやMattermostに通知する

JIRAの更新をSlackやMattermostに通知するBOTを作りました。

f:id:int128:20180225230158p:plain

このBOTは実際にお仕事で使っていて、いい感じの粒度で通知されるように改善を重ねています。

Dockerで簡単に実行できます。

docker run --rm -p 3000:3000 \
  -e SLACK_WEBHOOK=https://hooks.slack.com/... \
  int128/jira-to-slack

Kubernetesの場合はHelmで簡単にインストールできます。

helm repo add int128.github.io https://int128.github.io/helm-charts
helm repo update
helm install int128.github.io/jira-to-slack --set SLACK_WEBHOOK=https://hooks.slack.com/...

JIRAの設定画面でWebhookを追加すれば完了です。

詳しい使い方は下記を参照してください。

github.com