项目作者: eventOneHQ

项目描述 :
🤖 A Slack bot that connects to GitLab Issues.
高级语言: JavaScript
项目地址: git://github.com/eventOneHQ/gitlab-issue-bot.git
创建时间: 2017-06-19T21:10:22Z
项目社区:https://github.com/eventOneHQ/gitlab-issue-bot

开源协议:MIT License

下载


GitLab Issue Bot for Slack

Docker Pulls
Docker Build Status
MicroBadger Size

A Slack bot that connects to GitLab Issues

GitLab Issue Bot will notice references to GitLab Issues, automatically get the latest issue info from GitLab and respond with it!

Getting Started

Configuration

Add the following to a .env file (or docker-compose.yml if you are using Docker).

  1. SLACK_KEY=xxx-xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx # Your Slack API key
  2. GITLAB_KEY=xxxxxxxxxxxxxxxxxxxx # Your GitLab private token
  3. GITLAB_URL=https://gitlab.com # The base URL of your instance - no trailing slashes

Run

To start the bot, first install the dependencies:

  1. $ npm install

Then start the bot:

  1. $ npm start

Run with Docker

To run with docker-compose, first copy the config:

  1. $ cp docker-compose.exmaple.yml docker-compose.yml

Then open the docker-compose.yml and set the environment variables as describled above.

Finally, run the bot:

  1. $ docker-compose up -d

Run with Kubernetes

To run on Kubernetes, frist, create a secret with your Slack and Gitlab keys.

  1. kubectl create secret generic gitlab-issue-bot --from-literal=slackToken=<your_slack_token_here> --from-literal=gitlabKey=<your_gitlab_key_here>

Then, run the following to deploy!

  1. kubectl apply -f https://raw.githubusercontent.com/eventOneHQ/gitlab-issue-bot/master/k8s/deployment.yaml