-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-31330] Automatically label PRs based on the paths they touch #28114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
bf064f1
0d19a74
d6ecb1a
20b220c
84d0c32
aadea31
8228cf4
7db3491
30a09c5
2ddde69
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,131 @@ | ||
| # | ||
| # Licensed to the Apache Software Foundation (ASF) under one or more | ||
| # contributor license agreements. See the NOTICE file distributed with | ||
| # this work for additional information regarding copyright ownership. | ||
| # The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| # (the "License"); you may not use this file except in compliance with | ||
| # the License. You may obtain a copy of the License at | ||
| # | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| # | ||
|
|
||
| # Bot page: https://github.com/apps/probot-autolabeler | ||
| # The matching patterns follow the .gitignore spec. | ||
| # See: https://git-scm.com/docs/gitignore#_pattern_format | ||
| # Also, note that the plugin uses 'ignore' package. See also | ||
| # https://github.com/kaelzhang/node-ignore | ||
| INFRA: | ||
| - ".github/" | ||
| - "appveyor.yml" | ||
| - "/tools/" | ||
| - "/dev/create-release/" | ||
| - ".asf.yaml" | ||
| - ".gitattributes" | ||
| - ".gitignore" | ||
| - "/dev/github_jira_sync.py" | ||
| - "/dev/merge_spark_pr.py" | ||
| - "/dev/run-tests-jenkins*" | ||
| BUILD: | ||
| - "/dev/" | ||
HyukjinKwon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - "!/dev/github_jira_sync.py" | ||
| - "!/dev/merge_spark_pr.py" | ||
| - "!/dev/run-tests-jenkins*" | ||
| - "/build/" | ||
| - "/project/" | ||
| - "/assembly/" | ||
| - "*pom.xml" | ||
| - "/bin/docker-image-tool.sh" | ||
| - "/bin/find-spark-home*" | ||
| - "scalastyle-config.xml" | ||
| DOCS: | ||
| - "docs/" | ||
| - "/README.md" | ||
| - "/CONTRIBUTING.md" | ||
| EXAMPLES: | ||
| - "examples/" | ||
| - "/bin/run-example*" | ||
| CORE: | ||
| - "/core/" | ||
| - "/common/kvstore/" | ||
| - "/common/network-common/" | ||
| - "/common/network-shuffle/" | ||
| - "/python/pyspark/*.py" | ||
| - "/python/pyspark/tests/*.py" | ||
| - "/sbin/*master*.sh" | ||
| - "/sbin/*slave*.sh" | ||
| - "/sbin/spark-config.sh" | ||
| - "/sbin/*daemon*.sh" | ||
| - "/sbin/*history*.sh" | ||
| - "/sbin/*mesos*.sh" | ||
| SPARK SUBMIT: | ||
| - "/bin/spark-submit*" | ||
| SPARK SHELL: | ||
| - "/repl/" | ||
| SQL: | ||
| - "sql/" | ||
| - "/common/unsafe/" | ||
| - "!/python/pyspark/sql/avro/" | ||
| - "!/python/pyspark/sql/streaming.py" | ||
| - "!/python/pyspark/sql/tests/test_streaming.py" | ||
| - "/bin/spark-sql*" | ||
| - "/bin/beeline*" | ||
| - "/sbin/*thriftserver*.sh" | ||
| - "*SQL*.R" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was hesitant about adding R with SQL here because we don't usually label R with SQL in these files probably because RDD APIs are private in R. However, I concluded that there's no harm to label |
||
| - "DataFrame.R" | ||
| - "WindowSpec.R" | ||
| - "catalog.R" | ||
| - "column.R" | ||
| - "functions.R" | ||
| - "group.R" | ||
| - "schema.R" | ||
| - "types.R" | ||
| AVRO: | ||
| - "/external/avro/" | ||
| - "/python/pyspark/sql/avro/" | ||
| DSTREAM: | ||
| - "/streaming/" | ||
| - "/data/streaming/" | ||
| - "/external/flume*" | ||
| - "/external/kinesis*" | ||
| - "/external/kafka*" | ||
| - "/python/pyspark/streaming/" | ||
| GRAPHX: | ||
| - "/graphx/" | ||
| - "/data/graphx/" | ||
| ML: | ||
| - "ml/" | ||
| - "*mllib_*.R" | ||
| MLLIB: | ||
| - "spark/mllib/" | ||
| - "/mllib-local/" | ||
| - "/python/pyspark/mllib/" | ||
| STRUCTURED STREAMING: | ||
| - "sql/**/streaming/" | ||
| - "/external/kafka-0-10-sql/" | ||
| - "/python/pyspark/sql/streaming.py" | ||
| - "/python/pyspark/sql/tests/test_streaming.py" | ||
| - "*streaming.R" | ||
| PYTHON: | ||
| - "/bin/pyspark*" | ||
| - "python/" | ||
| R: | ||
| - "r/" | ||
HyukjinKwon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - "R/" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. According to https://github.com/kaelzhang/node-ignore#optionsignorecase-since-400 which the plugin uses, seems it's case-insensitive by default but I just kept it. |
||
| - "/bin/sparkR*" | ||
| YARN: | ||
| - "/resource-managers/yarn/" | ||
| MESOS: | ||
| - "/resource-managers/mesos/" | ||
| KUBERNETES: | ||
| - "/resource-managers/kubernetes/" | ||
| WINDOWS: | ||
| - "*.cmd" | ||
| - "/R/pkg/tests/fulltests/test_Windows.R" | ||
| WEB UI: | ||
| - "ui/" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, I pushed some more changes. I double checked manually by eyes but I didn't really run this plugin by myself. @nchammas can you double check the list please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, the tags here are same as JIRA components. There's one exception
Documentationwhich should be usuallyDOCSper the contribution guide (the tag in the PR title).