/github-pr-slack-reminders

gives us a message each morning about our open pull requests

Primary LanguageJavaScript

Github Pull Request Reminders in Slack

get a message in Slack about open pull requests in the repos of your choosing :)

screenshot

How to get open pull request reminders in your slack channel

  1. Add an incoming webhook to your slack channel (requires slack admin permissions)
  2. Add the URL for the webhook as a config variable in this app's heroku settings (requires heroku contributor permissions)
  3. Make a PR that adds an object to the subscriptions array in the config file
{
  slackchannel: process.env.NAME_OF_YOUR_HEROKU_CONFIG_VARIABLE_FROM_STEP_2,
  githubRepos: [
    {
      owner: "name of repo owner",
      name: "name of repo"
    },
    {
      owner: "name of repo owner",
      name: "name of repo,
      authors: [
        "github username 1",
        "github username 2"
      ]
    }
  ]
}