This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch maint-0.10.0
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/maint-0.10.0 by this push:
new c979b0616 ci: remove dev_pr.yml
c979b0616 is described below
commit c979b0616fab05d6fb15c9a8bda1a2ab8cf2d8bb
Author: David Li <[email protected]>
AuthorDate: Thu Jan 29 15:14:20 2026 +0900
ci: remove dev_pr.yml
---
.github/workflows/dev_pr.yml | 58 --------------------------------------------
1 file changed, 58 deletions(-)
diff --git a/.github/workflows/dev_pr.yml b/.github/workflows/dev_pr.yml
deleted file mode 100644
index cc9491e1e..000000000
--- a/.github/workflows/dev_pr.yml
+++ /dev/null
@@ -1,58 +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
-
-permissions:
- contents: read
- issues: write
- pull-requests: write
-
-jobs:
- process:
- name: Process
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- with:
- persist-credentials: false
-
- - name: Check title for Conventional Commits format
- if: |
- github.event_name == 'pull_request_target' &&
- (github.event.action == 'opened' ||
- github.event.action == 'edited')
- uses: actions/github-script@v7
- with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
- script: |
- const script =
require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/dev_pr/title_check.js`);
- await script({github, context});
-
- - name: Assign milestone
- if: always()
- env:
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
- ./.github/workflows/dev_pr/milestone.sh "${GITHUB_REPOSITORY}"
${{github.event.number}}