UNPKG

@ammar-ahmed/automation-app-bot

Version:
59 lines (43 loc) 2.63 kB
## Deploying If you would like to run your own instance of this plugin, you can do so by forking this repo and deploying it to your own servers or run it locally. The [Probot deployment guide](https://probot.github.io/docs/deployment/) describes this as well. [Create a GitHub App](https://github.com/settings/apps/new) and configure the permissions & events with the following: **Settings:** - GitHub app name - **Your app name** - Webhook URL - **Your webhook url for listening to events** (for local deployments you can use [smee.io](https://smee.io/)) - Webhook secret - **Your generated webhook seceret** (GitHub app page has instructions on how to create this) **Permissions:** - Checks - **Read & Write** - Issues - **Read & Write** - Repository metadata - **Read Only** - Pull requests - **Read Only** - Commit Statuses - **Read & Write** - Single File - **Read-only** - Path: `.github/mergeable.yml` - Repository Contents - **Read-Only** - Repository projects - **Read-Only** **And subscription to the following events:** - [x] Pull request - [x] Pull request review comment - [x] Pull request review - [x] Issues Make sure to create a private key for the app after it's been registered. ## Running Locally 1. Clone the forked repository on to your machine 2. Globally install smee-client from with npm ```npm install -g smee-client``` 3. Go to [smee.io](https://smee.io) and create a new webhook OR use the cli by running the `smee` command. 4. Copy `.env.template` to a new file called `.env`, and fill it out. 5. Run `npm run dev` in your local repository 6. Add a repository for your Github app by going to [application settings](https://github.com/settings/installations) 7. Do a test pull request to check if everything is working Note: if you wish to use a different config file name beside `mergeable.yml`, use `CONFIG_PATH` environment variable. Config files uses `.github` as base path, see [here](https://github.com/probot/probot/blob/1a19bdd/src/context.ts#L190) ### Possible issues #### `400 bad request` / `Error: No X-Hub-Signature found on request` This happens when you haven't configured the webhook secret correctly in your locally running instance. Make sure to set the `SECRET_TOKEN` environment variable in `.env` before running `npm run dev`. #### `ERROR probot: Integration not found` This may occur when running Mergeable using a GitHub Enterpise instance. To fix, try making sure you've set the `GHE_HOST` variable in `.env` to the hostname of your Enterprise instance. E.g. `GHE_HOST=github.your_company.com`.