|
5 | 5 | <p align="center">
|
6 | 6 | <a href="https://stats.uptimerobot.com/Dq46zf6PY" rel="nofollow"><img src="https://img.shields.io/uptimerobot/status/m779429441-a6394a1f5546b634ac6b52f8.svg" alt="Uptime Robot status"></a>
|
7 | 7 | <a href="https://travis-ci.com/wip/app" rel="nofollow"><img alt="Build Status" src="https://travis-ci.com/wip/app.svg?branch=master"></a>
|
| 8 | + <a href="https://coveralls.io/github/wip/app?branch=master" rel="nofollow"><img alt="Coverage Status" src="https://coveralls.io/repos/github/wip/app/badge.svg?branch=master"></a> |
8 | 9 | <a href="https://greenkeeper.io/" rel="nofollow"><img src="https://badges.greenkeeper.io/wip/app.svg" alt="Greenkeeper badge"></a>
|
9 | 10 | </p>
|
10 | 11 |
|
11 | 12 | 
|
12 | 13 |
|
13 | 14 | ## Usage
|
14 | 15 |
|
15 |
| -1. Install the app on your GitHub Repositories: [github.com/apps/wip](https://github.com/apps/wip) |
16 |
| -2. The WIP bot sets status of the request title to pending if it finds "wip", "work in progress" or "do not merge" (not case-sensitive) in |
17 |
| - 1. The pull request title |
18 |
| - 2. One of the pull request labels |
19 |
| - 3. One of the pull request commit messages |
20 |
| -3. If it doesn’t find the words anywhere, it will set status to success |
21 |
| - |
22 |
| -If you use the WIP App **we strongly recommend** to [subscribe to our updates](https://github.com/wip/app/issues/89). |
23 |
| -If you like it, please star this repository :) |
24 |
| - |
25 |
| -## Local setup |
26 |
| - |
27 |
| -- Setup repository |
28 |
| - |
29 |
| - ``` |
30 |
| - git clone [email protected]:wip/app.git wip-app |
31 |
| - cd wip-app |
32 |
| - npm install |
33 |
| - ``` |
34 |
| -- Create your own GitHub app: [instructions](https://probot.github.io/docs/development/#configure-a-github-app) |
35 |
| -- On your local machine, copy `.env.example` to `.env`. |
36 |
| -- Go to [smee.io](https://smee.io) and click **Start a new channel**. Set `WEBHOOK_PROXY_URL` in `.env` to the URL that you are redirected to. |
37 |
| -- [Create a new GitHub App](https://github.com/settings/apps/new) with: |
38 |
| - - **Webhook URL**: Use your `WEBHOOK_PROXY_URL` from the previous step. |
39 |
| - - **Webhook Secret**: `development`. |
40 |
| - - **Permissions & events** |
41 |
| - - Commit statuses **(read & write)** |
42 |
| - - Pull Requests **(read only)** |
43 |
| - - Subscribe to events **Pull request** |
44 |
| -- Download the private key and move it to your project's directory. It will get picked up by Probot automatically. |
45 |
| -- Edit `.env` and set `APP_ID` to the ID of the app you just created. The App ID can be found in your app settings page here |
46 |
| -- Run `$ npm start` to start the server/ |
47 |
| - |
48 |
| -## Contribute |
49 |
| - |
50 |
| -If you’d like to contribute a bug fix or feature to the `wip` app, please fork the repository, then clone it to your computer. Then install dependencies and run the tests |
| 16 | +By default, WIP is setting a pull request status to pending if it finds one of the following terms in the pull request titles |
51 | 17 |
|
| 18 | +- `wip` |
| 19 | +- `work in progress` |
| 20 | +- `🚧` |
| 21 | + |
| 22 | +The pro plan allows for [configuration](#configuration) of both the terms and the locations that the app is looking for the terms. The pending status can be overwritten by adding `@wip ready for review` to the pull request body. |
| 23 | + |
| 24 | +## Configuration |
| 25 | + |
| 26 | +Repositories belonging to an account or organization with a Pro plan subscription can be configured by creating a `.github/wip.yml` file. Two options can be configured |
| 27 | + |
| 28 | +1. **locations**: any of `title` (pull request title), `label_name` and `commit_subject` (1st line of the pull request’s commit messages). Default: `title` |
| 29 | +2. **terms**: list of strings to look for in the defined locations. All terms are case-insensitive. Default: `wip`, `work in progress` and `🚧` |
| 30 | + |
| 31 | +Example: |
| 32 | + |
| 33 | +```yaml |
| 34 | +locations: |
| 35 | +- title |
| 36 | +- label_name |
| 37 | +- commit_subject |
| 38 | +terms: |
| 39 | +- do not merge |
| 40 | +- ⛔ |
52 | 41 | ```
|
53 |
| -npm install |
54 |
| -npm test |
| 42 | +
|
| 43 | +The above configuration makes WIP look for "do not merge" and "⛔" in the pull request title, all assigned label names and all commit subjects. |
| 44 | +
|
| 45 | +You can also configure different terms for different locations: |
| 46 | +
|
| 47 | +```yaml |
| 48 | +- terms: 🚧 |
| 49 | + locations: |
| 50 | + - title |
| 51 | + - label_name |
| 52 | +- terms: |
| 53 | + - fixup! |
| 54 | + - squash! |
| 55 | + locations: commit_subject |
55 | 56 | ```
|
56 | 57 |
|
57 |
| -Before adding a feature, create an issue first to ask if it’s within the scope of the app. If possible, add tests to your pull requests. |
| 58 | +The above configuration looks first for `🚧` in the pull request title and assigned label names. After that it looks for `fixup!` and `squash!` in the commit subjects. |
| 59 | + |
| 60 | +## About WIP |
| 61 | + |
| 62 | +Besides being a hopefully useful GitHub application, the WIP app is also meant as a reference implementation. I try to keep the complexity low and the code easy to follow. If you are thinking of creating your own GitHub app, the WIP might be a good starting point for you. |
| 63 | + |
| 64 | +Besides the code, I also made our [policies](https://github.com/wip/policies) good templates for your app. |
| 65 | + |
| 66 | +All revenue from the "pro" plan will be donated to [Rails Girls Summer of Code](https://railsgirlssummerofcode.org/). I only added the paid plan to make the WIP a real-life GitHub App example. If you cannot pay but depend on the pro features you can add your account with an explanation to the [`pro-plan-for-free.js` file]([`pro-plan-for-free.js). |
| 67 | + |
| 68 | +If you have any questions, please don’t hesitate to create an issue. |
| 69 | + |
| 70 | +## Contributing |
| 71 | + |
| 72 | +See [CONTRIBUTING.md](CONTRIBUTING.md) |
58 | 73 |
|
59 | 74 | ## Credits
|
60 | 75 |
|
| 76 | +The WIP app was created by [Gregor Martynus](https://github.com/gr2m). You can follow him on twitter at [@gr2m](https://twitter.com/gr2m). |
| 77 | + |
61 | 78 | The logo was created by [Micah Ilbery](https://github.com/micahilbery).
|
62 | 79 |
|
63 | 80 | ## Legal
|
64 | 81 |
|
65 |
| -License: [Apache 2.0](LICENSE). [Privacy Policy](https://github.com/wip/policies/blob/master/PRIVACY.md). [Security Policy](https://github.com/wip/policies/blob/master/SECURITY.md) |
| 82 | +License: [Apache 2.0](LICENSE). [Privacy Policy](https://github.com/wip/policies/blob/master/PRIVACY.md). [Security Policy](https://github.com/wip/policies/blob/master/SECURITY.md). [Code of Conduct](CODE_OF_CONDUCT.md) |
0 commit comments