Go to file
Martin Klepsch 04c257636f
document how to create slack bot and setup of .env file
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2018-02-05 17:32:48 +01:00
.github Have bot take the CONTRIBUTOR column into consideration 2018-02-05 11:41:37 +01:00
__tests__ Port from Hubot to Probot 2018-01-22 14:48:57 +01:00
bot_scripts Allow moving from `CONTRIBUTOR` to `IN TEST` directly 2018-02-05 17:27:00 +01:00
lib Implement rudimentary version of dynamic Slack to GitHub ID username mapping. Part of #12 2018-02-04 19:26:57 +01:00
scripts Add `scripts/merge-pr.sh` script and move bot scripts to `bot_scripts` folder 2018-02-05 15:36:12 +01:00
.env.example document setup of .env file 2018-02-05 17:32:18 +01:00
.eslintrc.json Fix linting issues. Add `eslint` package 2018-01-28 09:41:40 +01:00
.gitignore Port from Hubot to Probot 2018-01-22 14:48:57 +01:00
.travis.yml Port from Hubot to Probot 2018-01-22 14:48:57 +01:00
CODE_OF_CONDUCT.md Port from Hubot to Probot 2018-01-22 14:48:57 +01:00
CONTRIBUTING.md Port from Hubot to Probot 2018-01-22 14:48:57 +01:00
LICENSE Port from Hubot to Probot 2018-01-22 14:48:57 +01:00
README.md document how to create slack bot and setup of .env file 2018-02-05 17:32:48 +01:00
index.js Add `scripts/merge-pr.sh` script and move bot scripts to `bot_scripts` folder 2018-02-05 15:36:12 +01:00
package-lock.json Implement rudimentary version of dynamic Slack to GitHub ID username mapping. Part of #12 2018-02-04 19:26:57 +01:00
package.json Implement rudimentary version of dynamic Slack to GitHub ID username mapping. Part of #12 2018-02-04 19:26:57 +01:00

README.md

statusbot

statusbot is a chat bot built on the Probot framework. There's a wiki available here.

This README is intended to help get you started. Definitely update and improve to talk about your own instance, how to use and deploy, what functionality is available, etc!

What does the bot do?

Right now the bot has two sets of capabilities:

  • Doing background management in GitHub:
    • Assign new PRs to the Pipeline for QA project board (REVIEW column).
    • Move existing PRs to the correct Pipeline for QA project board column (REVIEW/IN TEST) depending on whether or not the required conditions are met (is mergeable, at least two reviewers have approved and there is no request for changes).
    • Assign issues that are labeled bounty-awaiting-approval to the Status SOB Swarm project board (bounty-awaiting-approval column).
    • Welcome users who post their first PR in a project.
    • Checks if all commits are GPG-signed and sets the PR status accordingly.
    • Unfurls links on Issues and Pull Request discussions.
    • Disallows merging of PRs containing WIP in the title.
    • New functionality will be added in the future (wishlist is being tracked here)

The project board names, column names, welcome message and other values are stored in the .github/github-bot.yml file. It can be overriden for each specific repository by adding a file in the same path on the respective repository (see probot-config).

Development

To get your environment set up go through the following steps:

  1. Run npm install

  2. Populate .env

    cp .env.example .env
    # edit .env file to contain proper config
    

After this you can start the bot by running:

npm start

Creating the Slack Bot Integration

  1. Go to https://my.slack.com/services/new/bot
  2. Add a bot integration
  3. Note the bot token starting with xoxb- and put it into .env

Creating the bot GitHub App

This bot is meant to be packaged as a GitHub App. There are two steps to it: creating the app, and installing the app. Creating a GitHub App only needs to be done once and the app can be made public to be reused for any number of repositories and organizations.

See the official docs for deployment.

  1. Create the GitHub App:
    1. In GitHub, go to Settings/Developer settings/GitHub Apps and click on New GitHub App
    2. Enter the bot name in GitHub App name, e.g. Status GitHub Bot
    3. In Homepage URL, enter the /ping endpoint of the service, e.g. https://5e63b0ab.ngrok.io/ping
    4. In Webhook URL, enter the root endpoint of the service, e.g. https://5e63b0ab.ngrok.io/
    5. In Webhook secret (optional), enter a string of characters that matches the value passed in the in the WEBHOOK_SECRET environment variable.
    6. This app requires these Permissions & events for the GitHub App:
      • Commit statuses - Read & write
      • Issues - Read & Write
        • Check the box for Issue comment events
        • Check the box for Issues events
      • Pull requests - Read & Write
        • Check the box for Pull request events
        • Check the box for Pull request review events
        • Check the box for Pull request review comment events
      • Repository contents - Read-only
        • Check the box for Push events
      • Repository projects - Read & Write
        • Check the box for Project for repository projects events
      • Organization projects - Read-only
        • Check the box for Project for organization projects events
      • Single File - Read-only
        • Path: .github/github-bot.yml
    7. 🔍 Verify that you have ticked 8 boxes.
    8. Generate a private key pass and save it.
  2. Installing the bot service:
    1. Deploy the bot to the cloud.
    2. Set the APP_ID environment variable to value reported when the GitHub App was created.
    3. Set the WEBHOOK_SECRET environment variable to the value configured in the GitHub App.
    4. Set the PRIVATE_KEY environment variable to the contents of the .pem file.
    5. Set the SLACK_BOT_TOKEN environment variable to the value reported for the bot in Slack.
  3. Install the GitHub App in an account:
    1. Select the repositories where the bot should work (e.g. status-react).

Restart the bot

You may want to get comfortable with heroku logs and heroku restart if you're having issues.