Skip to content

Commit 5dfef04

Browse files
committed
docs(README): update for new version
1 parent 289283c commit 5dfef04

File tree

4 files changed

+436
-40
lines changed

4 files changed

+436
-40
lines changed

README.md

+57-40
Original file line numberDiff line numberDiff line change
@@ -5,61 +5,78 @@
55
<p align="center">
66
<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>
77
<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>
89
<a href="https://greenkeeper.io/" rel="nofollow"><img src="https://badges.greenkeeper.io/wip/app.svg" alt="Greenkeeper badge"></a>
910
</p>
1011

1112
![WIP bot screencast](assets/wip.gif)
1213

1314
## Usage
1415

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
5117

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+
-
5241
```
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
5556
```
5657
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)
5873

5974
## Credits
6075

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+
6178
The logo was created by [Micah Ilbery](https://github.com/micahilbery).
6279

6380
## Legal
6481

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)

assets/architecture.mermaid

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
graph TB
2+
REQUEST(Webhook request) -- received by Probot --> IS_VALID{is valid?}
3+
4+
subgraph Probot
5+
IS_VALID -- yes --> GET_AUTHENTICATION[authenticate]
6+
GET_AUTHENTICATION --> EVENT_HANDLER(Event handler)
7+
8+
subgraph WIP app
9+
EVENT_HANDLER --> IS_PRO_PLAN{pro plan?}
10+
IS_PRO_PLAN -- no --> CHECK_TITLE[Check PR title]
11+
IS_PRO_PLAN -- yes --> GET_CONFIG[Get configuration]
12+
GET_CONFIG --> GET_CUSTOM_STATUS[Get custom status]
13+
GET_CUSTOM_STATUS --> GET_CURRENT_STATUS[Get current status]
14+
CHECK_TITLE --> GET_CURRENT_STATUS
15+
GET_CURRENT_STATUS -->HAS_STATUS_CHANGE{status changed?}
16+
HAS_STATUS_CHANGE -- yes --> US[Update status]
17+
end
18+
end
19+
20+
subgraph GitHub.com
21+
PR(Pull Request) -- change triggers --> REQUEST
22+
end
23+
24+
IS_VALID -- no --> DONE
25+
HAS_STATUS_CHANGE -- no --> DONE
26+
US --> PR
27+
DONE["¯\_(ツ)_/¯"]
28+
29+
style DONE fill:#FFF,stroke-width:0

0 commit comments

Comments
 (0)