This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/spark-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 325506e [SPARK-55527] Remove `labeler` GitHub Actions job
325506e is described below
commit 325506eb25e9b7031b30cca59169c3e69decbe6a
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Sat Feb 14 00:46:40 2026 -0800
[SPARK-55527] Remove `labeler` GitHub Actions job
### What changes were proposed in this pull request?
This PR aims to remove `labeler` GitHub Action job.
### Why are the changes needed?
To follow the Apache Spark main repository management.
- https://github.com/apache/spark/pull/54216
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Manual review.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #500 from dongjoon-hyun/SPARK-55527.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/labeler.yml | 67 -------------------------------------------
.github/workflows/labeler.yml | 40 --------------------------
2 files changed, 107 deletions(-)
diff --git a/.github/labeler.yml b/.github/labeler.yml
deleted file mode 100644
index aaebcac..0000000
--- a/.github/labeler.yml
+++ /dev/null
@@ -1,67 +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: [
- '.asf.yaml',
- '.gitignore',
- '.github/**/*',
- 'dev/merge_spark_pr.py',
- 'dev/check-license'
- ]
-
-BUILD:
- - changed-files:
- - any-glob-to-any-file: [
- '**/*.gradle',
- 'gradle/**/*',
- 'config/**/*',
- 'build-tools/**/*'
- ]
-
-DOCS:
- - changed-files:
- - any-glob-to-any-file: [
- '**/README.md'
- ]
-
-EXAMPLES:
- - changed-files:
- - any-glob-to-any-file: [
- 'examples/**/*'
- ]
-
-API:
- - changed-files:
- - any-glob-to-any-file: [
- 'spark-operator-api/**/*'
- ]
-
-SUBMISSION WORKER:
- - changed-files:
- - any-glob-to-any-file: [
- 'spark-submission-worker/**/*'
- ]
-
-OPERATOR:
- - changed-files:
- - any-glob-to-any-file: [
- 'spark-operator/**/*'
- ]
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
deleted file mode 100644
index ccfdeb1..0000000
--- a/.github/workflows/labeler.yml
+++ /dev/null
@@ -1,40 +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
- pull-requests: write
- 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]