This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new ee58e0e17501 [SPARK-55433][INFRA] Remove labeler in GitHub Actions
ee58e0e17501 is described below
commit ee58e0e175015579a35ff949f3c093d0eec5e943
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Mon Feb 9 08:48:38 2026 +0900
[SPARK-55433][INFRA] Remove labeler in GitHub Actions
### What changes were proposed in this pull request?
There might be a security issue.
### Why are the changes needed?
Remove labeler.yml
### Does this PR introduce _any_ user-facing change?
No, dev-only.
### How was this patch tested?
Will monitor the CI.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #54216 from HyukjinKwon/SPARK-55433.
Authored-by: Hyukjin Kwon <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
.github/labeler.yml | 234 ------------------------------------------
.github/workflows/labeler.yml | 39 -------
2 files changed, 273 deletions(-)
diff --git a/.github/labeler.yml b/.github/labeler.yml
deleted file mode 100644
index c90ff6c21fd3..000000000000
--- a/.github/labeler.yml
+++ /dev/null
@@ -1,234 +0,0 @@
-#
-# 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
-#
-# http://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.
-#
-
-INFRA:
- - changed-files:
- - any-glob-to-any-file: [
- '.github/**/*',
- 'tools/**/*',
- 'dev/create-release/**/*',
- '.asf.yaml',
- '.gitattributes',
- '.gitignore',
- 'dev/merge_spark_pr.py'
- ]
-
-BUILD:
- - changed-files:
- - all-globs-to-any-file: [
- 'dev/**/*',
- '!dev/merge_spark_pr.py'
- ]
- - any-glob-to-any-file: [
- 'build/**/*',
- 'project/**/*',
- 'assembly/**/*',
- '**/*pom.xml',
- 'bin/docker-image-tool.sh',
- 'bin/find-spark-home*',
- 'scalastyle-config.xml'
- ]
-
-DOCS:
- - changed-files:
- - any-glob-to-any-file: [
- 'docs/**/*',
- '**/README.md',
- '**/CONTRIBUTING.md',
- 'python/docs/**/*'
- ]
-
-EXAMPLES:
- - changed-files:
- - any-glob-to-any-file: [
- 'examples/**/*',
- 'bin/run-example*'
- ]
-
-CORE:
- - changed-files:
- - all-globs-to-any-file: [
- 'core/**/*',
- '!**/*UI.scala',
- '!**/ui/**/*'
- ]
- - any-glob-to-any-file: [
- 'common/kvstore/**/*',
- 'common/network-common/**/*',
- 'common/network-shuffle/**/*',
- 'python/pyspark/*.py',
- 'python/pyspark/tests/**/*.py'
- ]
-
-SPARK SUBMIT:
- - changed-files:
- - any-glob-to-any-file: [
- 'bin/spark-submit*'
- ]
-
-SPARK SHELL:
- - changed-files:
- - any-glob-to-any-file: [
- 'repl/**/*',
- 'bin/spark-shell*'
- ]
-
-SQL:
- - changed-files:
- - all-globs-to-any-file: [
- '**/sql/**/*',
- '!python/**/avro/**/*',
- '!python/**/protobuf/**/*',
- '!python/**/streaming/**/*'
- ]
- - any-glob-to-any-file: [
- 'common/unsafe/**/*',
- 'common/sketch/**/*',
- 'common/variant/**/*',
- 'bin/spark-sql*',
- 'bin/beeline*',
- 'sbin/*thriftserver*.sh',
- '**/*SQL*.R',
- '**/DataFrame.R',
- '**/*WindowSpec.R',
- '**/*catalog.R',
- '**/*column.R',
- '**/*functions.R',
- '**/*group.R',
- '**/*schema.R',
- '**/*types.R'
- ]
-
-AVRO:
- - changed-files:
- - any-glob-to-any-file: [
- 'connector/avro/**/*',
- 'python/**/avro/**/*'
- ]
-
-DSTREAM:
- - changed-files:
- - any-glob-to-any-file: [
- 'streaming/**/*',
- 'data/streaming/**/*',
- 'connector/kinesis-asl/**/*',
- 'connector/kinesis-asl-assembly/**/*',
- 'connector/kafka-0-10/**/*',
- 'connector/kafka-0-10-assembly/**/*',
- 'connector/kafka-0-10-token-provider/**/*',
- 'python/pyspark/streaming/**/*'
- ]
-
-GRAPHX:
- - changed-files:
- - any-glob-to-any-file: [
- 'graphx/**/*',
- 'data/graphx/**/*'
- ]
-
-ML:
- - changed-files:
- - any-glob-to-any-file: [
- '**/ml/**/*',
- '**/*mllib_*.R'
- ]
-
-MLLIB:
- - changed-files:
- - any-glob-to-any-file: [
- '**/mllib/**/*',
- 'mllib-local/**/*'
- ]
-
-STRUCTURED STREAMING:
- - changed-files:
- - any-glob-to-any-file: [
- '**/sql/**/streaming/**/*',
- 'connector/kafka-0-10-sql/**/*',
- 'python/pyspark/sql/**/streaming/**/*',
- '**/*streaming.R'
- ]
-
-PYTHON:
- - changed-files:
- - any-glob-to-any-file: [
- 'bin/pyspark*',
- '**/python/**/*'
- ]
-
-PANDAS API ON SPARK:
- - changed-files:
- - any-glob-to-any-file: [
- 'python/pyspark/pandas/**/*'
- ]
-
-R:
- - changed-files:
- - any-glob-to-any-file: [
- '**/r/**/*',
- '**/R/**/*',
- 'bin/sparkR*'
- ]
-
-YARN:
- - changed-files:
- - any-glob-to-any-file: [
- 'resource-managers/yarn/**/*'
- ]
-
-KUBERNETES:
- - changed-files:
- - any-glob-to-any-file: [
- 'bin/docker-image-tool.sh',
- 'resource-managers/kubernetes/**/*'
- ]
-
-WINDOWS:
- - changed-files:
- - any-glob-to-any-file: [
- '**/*.cmd',
- 'R/pkg/tests/fulltests/test_Windows.R'
- ]
-
-WEB UI:
- - changed-files:
- - any-glob-to-any-file: [
- '**/ui/**/*',
- '**/*UI.scala'
- ]
-
-DEPLOY:
- - changed-files:
- - any-glob-to-any-file: [
- 'sbin/**/*'
- ]
-
-CONNECT:
- - changed-files:
- - any-glob-to-any-file: [
- 'sql/connect/**/*',
- 'python/**/connect/**/*'
- ]
-
-PROTOBUF:
- - changed-files:
- - any-glob-to-any-file: [
- 'connector/protobuf/**/*',
- 'python/**/protobuf/**/*'
- ]
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
deleted file mode 100644
index 595a270ad1d2..000000000000
--- a/.github/workflows/labeler.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# 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
-#
-# http://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.
-#
-
-# Intentionally has a general name.
-# because the test status check created in GitHub Actions
-# currently randomly picks any associated workflow.
-# So, the name was changed to make sense in that context too.
-# See also
https://github.community/t/specify-check-suite-when-creating-a-checkrun/118380/10
-
-name: "On pull requests"
-on: pull_request_target
-
-jobs:
- label:
- name: Label pull requests
- runs-on: ubuntu-latest
- permissions:
- contents: read
- steps:
- - uses: actions/labeler@v5
- with:
- repo-token: "${{ secrets.GITHUB_TOKEN }}"
- sync-labels: true
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]