-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Boring Cyborg to project for automating Github tasks (#2081)
* add Boring Cyborg config file Signed-off-by: Michael Robinson <merobi@gmail.com> * fix typos in boring cyborg config Signed-off-by: Michael Robinson <merobi@gmail.com> Signed-off-by: Michael Robinson <merobi@gmail.com>
- Loading branch information
1 parent
9e1cb7c
commit 4d9475c
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
##### Labeler ########################################################################################################## | ||
# Enable "labeler" for your PR that would add labels to PRs based on the paths that are modified in the PR. | ||
labelPRBasedOnFilePath: | ||
# Add 'api' to any changes within 'api' folder or any subfolders | ||
api: | ||
- api/**/* | ||
|
||
# Add 'chart' to any changes within 'chart' folder or any subfolders | ||
chart: | ||
- chart/**/* | ||
|
||
# Add 'docs' to any changes to `.md` files in root or within 'docs' folder, subfolders | ||
docs: | ||
- docs/**/* | ||
- ../*.md | ||
|
||
# Add 'client/java' to any changes within 'clients/java' folder or any subfolders | ||
client/java: | ||
- clients/java/**/* | ||
|
||
# Add 'client/python' to any changes within 'clients/python' folder or any subfolders | ||
client/python: | ||
- clients/python/**/* | ||
|
||
# Add 'docker' to any changes within 'docker' folder | ||
docker: | ||
- docker/* | ||
|
||
# Add 'example' to any changes within 'examples' folder or any subfolders | ||
example: | ||
- examples/**/* | ||
|
||
# Add 'proposal' to any changes within 'proposals' folder or any subfolders | ||
proposal: | ||
- proposals/**/* | ||
|
||
# Add 'spec' to any changes within 'spec' folder | ||
spec: | ||
- spec/* | ||
|
||
# Add 'web' to any changes within 'web' folder or any subfolders | ||
web: | ||
- web/**/* | ||
|
||
|
||
|
||
##### Greetings ######################################################################################################## | ||
# Comment to be posted to welcome users when they open their first PR | ||
firstPRWelcomeComment: > | ||
Thanks for opening your first pull request in the Marquez project! Please check out our contributing guidelines (https://github.com/MarquezProject/marquez/blob/main/CONTRIBUTING.md). | ||
# Comment to be posted to congratulate user on their first merged PR | ||
firstPRMergeComment: > | ||
Great job! Congrats on your first merged pull request in the Marquez project! | ||
# Comment to be posted to on first time issues | ||
firstIssueWelcomeComment: > | ||
Thanks for opening your first issue in the Marquez project! Please be sure to follow the issue template! |