mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-01-12 22:49:53 +08:00
45 lines
1.4 KiB
Markdown
45 lines
1.4 KiB
Markdown
---
|
|
title: Update Docs
|
|
description: Replies to newly opened pull requests that do not update a file in the
|
|
`/docs` folder or the `README`
|
|
slug: update-docs
|
|
screenshots:
|
|
- https://user-images.githubusercontent.com/13410355/28179044-97207bee-67b5-11e7-80d0-0c8ede4a325f.png
|
|
stars: 16
|
|
authors:
|
|
- hiimbex
|
|
repository: behaviorbot/update-docs
|
|
updated: 2018-10-17 22:02:17 UTC
|
|
host: https://probot-update-docs.herokuapp.com
|
|
installations: 38
|
|
organizations:
|
|
- jekyll
|
|
- adonisjs
|
|
- carla-simulator
|
|
- u3u
|
|
- splash-cli
|
|
- behaviorbot
|
|
- KengoTODA
|
|
- ilovecode1
|
|
- PHPMap
|
|
- marclop
|
|
---
|
|
|
|
|
|
Update Docs comments on newly opened Pull Requests that do not update either the README or a file in the `/docs` folder.
|
|
|
|
Create a `.github/config.yml` file that contains the contents you would like to reply within an `updateDocsComment`. Optionally, you can also add an `updateDocsWhiteList` that includes terms, that if found in the title, the bot will not comment on.
|
|
|
|
```yml
|
|
# Configuration for update-docs - https://github.com/behaviorbot/update-docs
|
|
|
|
# Comment to be posted to on PRs that don't update documentation
|
|
updateDocsComment: >
|
|
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update some of our documentation based on your changes.
|
|
|
|
# Terms that if found in the title of a PR will prevent the bot from commenting on it
|
|
updateDocsWhiteList:
|
|
- bug
|
|
- chore
|
|
```
|