This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch maint-21
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/maint-21 by this push:
     new 043f6a73e ci: remove dev_pr.yml
043f6a73e is described below

commit 043f6a73e7a1b24e338db876baecd19ee8950bd2
Author: David Li <[email protected]>
AuthorDate: Thu Jan 29 15:14:23 2026 +0900

    ci: remove dev_pr.yml
---
 .github/workflows/dev_pr.yml | 78 --------------------------------------------
 1 file changed, 78 deletions(-)

diff --git a/.github/workflows/dev_pr.yml b/.github/workflows/dev_pr.yml
deleted file mode 100644
index 51f3b8457..000000000
--- a/.github/workflows/dev_pr.yml
+++ /dev/null
@@ -1,78 +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: Dev PR
-
-on:
-  pull_request_target:
-    types:
-      - opened
-      - edited
-      - synchronize
-      - ready_for_review
-      - review_requested
-
-permissions:
-  contents: read
-  issues: write
-  pull-requests: write
-
-defaults:
-  run:
-    # 'bash' will expand to -eo pipefail
-    shell: bash
-
-jobs:
-  process:
-    name: Process
-    runs-on: ubuntu-latest
-    steps:
-      - uses: actions/checkout@v5
-        with:
-          persist-credentials: false
-
-      - name: Assign milestone
-        if: '! github.event.pull_request.draft'
-        env:
-          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        run: |
-          ./.github/workflows/dev_pr/milestone.sh "${GITHUB_REPOSITORY}" 
${{github.event.number}}
-
-      - uses: actions/checkout@v5
-        with:
-          fetch-depth: 0
-          path: pr_checkout
-          persist-credentials: false
-          ref: "${{ github.event.pull_request.merge_commit_sha }}"
-
-      - name: Check PR title for conventional commit format
-        env:
-          PR_TITLE: ${{ github.event.pull_request.title }}
-        run: |
-          python dev/adbc_dev/title_check.py $(pwd)/pr_checkout "$PR_TITLE"
-
-      # Pings make it into the commit message where they annoy the user every
-      # time the commit gets pushed somewhere
-      - name: Check PR body for pings
-        # Don't check this if it's dependabot - dependabot doesn't ping users
-        # and it tends to include things that look like pings (but are
-        # escaped)
-        if: github.actor != 'dependabot[bot]'
-        env:
-          PR_BODY: ${{ github.event.pull_request.body }}
-        run: |
-          python .github/workflows/dev_pr/body_check.py "$PR_BODY"

Reply via email to