This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch fix/remove-labeler-action in repository https://gitbox.apache.org/repos/asf/sedona.git
commit 2faec37de34b45b867a9bd18a79d9170f4d6fa1d Author: Jia Yu <[email protected]> AuthorDate: Tue Mar 10 21:55:29 2026 -0700 Remove PR labeler action Fixes #2671. The PR labeler action is broken and no longer allowed by ASF policy. --- .github/labeler.yml | 94 ------------------------------------------- .github/workflows/labeler.yml | 32 --------------- 2 files changed, 126 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index fdff4adef3..0000000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,94 +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. - -# https://github.com/actions/labeler -root: - - any: - - changed-files: - - any-glob-to-any-file: - - '*' - -docs: - - any: - - changed-files: - - any-glob-to-any-file: - - docs/**/* - - docs-overrides/**/* - - README.md - -github_actions: - - any: - - changed-files: - - any-glob-to-any-file: - - .github/**/* - -licenses: - - any: - - changed-files: - - any-glob-to-any-file: - - licenses/**/* - -sedona-common: - - any: - - changed-files: - - any-glob-to-any-file: - - common/**/* - -sedona-docker: - - any: - - changed-files: - - any-glob-to-any-file: - - docker/**/* - -sedona-flink: - - any: - - changed-files: - - any-glob-to-any-file: - - flink/**/* - - flink-shaded/**/* - -sedona-python: - - any: - - changed-files: - - any-glob-to-any-file: - - python/**/* - -sedona-r: - - any: - - changed-files: - - any-glob-to-any-file: - - R/**/* - -sedona-snowflake: - - any: - - changed-files: - - any-glob-to-any-file: - - snowflake/**/* - - snowflake-tester/**/* - -sedona-spark: - - any: - - changed-files: - - any-glob-to-any-file: - - spark/**/* - - spark-shaded/**/* - -sedona-zeppelin: - - any: - - changed-files: - - any-glob-to-any-file: - - zeppelin/**/* diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 33c6eb63ae..0000000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,32 +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. - -# https://github.com/actions/labeler -name: Pull Request Labeler -on: - - pull_request -jobs: - triage: - permissions: - contents: read - pull-requests: write - runs-on: ubuntu-latest - steps: - - uses: actions/labeler@v6 - with: - repo-token: '${{ secrets.GITHUB_TOKEN }}' - sync-labels: true
