Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit c519fe1

Browse files
committedApr 13, 2020
[SPARK-31330][INFRA][FOLLOW-UP] Move sbin and some files into appropriate categories in autolabeller
### What changes were proposed in this pull request? This PR is a followup of apache@1b87015. Now, we automatically label PRs, and seems working fine. This PR proposes to correct some minor list and categories. **1.** Move `sbin` from `CORE` into `DEPLOY` components. ``` $ ls sbin decommission-slave.sh start-all.sh start-slave.sh stop-master.sh stop-thriftserver.sh slaves.sh start-history-server.sh start-slaves.sh stop-mesos-dispatcher.sh spark-config.sh start-master.sh start-thriftserver.sh stop-mesos-shuffle-service.sh spark-daemon.sh start-mesos-dispatcher.sh stop-all.sh stop-slave.sh spark-daemons.sh start-mesos-shuffle-service.sh stop-history-server.sh stop-slaves.sh ``` **2.** `/sbin/*mesos*.sh` -> `MESOS` `/bin/spark-shell*` -> `SPARK SHELL`. ### Why are the changes needed? To label correctly and dev can take an advantage of it such as checking the PRs of a specific component. ### Does this PR introduce any user-facing change? No. ### How was this patch tested? It was not tested yet. It can be tested after it was merged. Closes apache#28201 from HyukjinKwon/SPARK-31330. Authored-by: HyukjinKwon <gurwls223@apache.org> Signed-off-by: HyukjinKwon <gurwls223@apache.org>
1 parent cf63ad6 commit c519fe1

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed
 

‎.github/autolabeler.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,11 @@ CORE:
5757
- "/common/network-shuffle/"
5858
- "/python/pyspark/*.py"
5959
- "/python/pyspark/tests/*.py"
60-
- "/sbin/*master*.sh"
61-
- "/sbin/*slave*.sh"
62-
- "/sbin/spark-config.sh"
63-
- "/sbin/*daemon*.sh"
64-
- "/sbin/*history*.sh"
65-
- "/sbin/*mesos*.sh"
6660
SPARK SUBMIT:
6761
- "/bin/spark-submit*"
6862
SPARK SHELL:
6963
- "/repl/"
64+
- "/bin/spark-shell*"
7065
SQL:
7166
- "sql/"
7267
- "/common/unsafe/"
@@ -122,10 +117,13 @@ YARN:
122117
- "/resource-managers/yarn/"
123118
MESOS:
124119
- "/resource-managers/mesos/"
120+
- "/sbin/*mesos*.sh"
125121
KUBERNETES:
126122
- "/resource-managers/kubernetes/"
127123
WINDOWS:
128124
- "*.cmd"
129125
- "/R/pkg/tests/fulltests/test_Windows.R"
130126
WEB UI:
131127
- "ui/"
128+
DEPLOY:
129+
- "/sbin/"

0 commit comments

Comments
 (0)