From c1f172bc534364f081a090f6412a1c58cebd75ba Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Fri, 13 Feb 2026 20:42:30 -0800 Subject: [PATCH] ORC-2093: Remove `labeler` GitHub Action job --- .github/labeler.yml | 47 ----------------------------------- .github/workflows/labeler.yml | 34 ------------------------- 2 files changed, 81 deletions(-) delete mode 100644 .github/labeler.yml delete mode 100644 .github/workflows/labeler.yml diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 7403332114..0000000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,47 +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: - - ".github/**/*" - - "appveyor.yml" - - ".asf.yaml" - - ".gitignore" - - "dev/**/*" - - "docker/**/*" - - ".clang-format" -BUILD: - - "CMakeLists.txt" - - "cmake_modules/**/*" - - "proto/**/*" - - "**/*pom.xml" - - "conan/**/*" -DOCS: - - "site/**/*" - - "**/README.md" -EXAMPLES: - - "examples/**/*" -JAVA: - - "java/**/*" -CPP: - - "c++/**/*" - - "tools/**/*" -MESON: - - "**/meson.build" - - "**/meson.options" - - "subprojects/**/*" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 5c25e72dd5..0000000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,34 +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. -# - -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@2.2.0 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - sync-labels: true