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

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


The following commit(s) were added to refs/heads/main by this push:
     new 4146e5683 ci: don't check for pings in PR body when it's Dependabot 
(#3094)
4146e5683 is described below

commit 4146e56835d7944b2e85a9cc7771988473b09cc2
Author: David Li <[email protected]>
AuthorDate: Mon Jul 7 08:40:19 2025 +0900

    ci: don't check for pings in PR body when it's Dependabot (#3094)
    
    Fixes #2963.
---
 .github/workflows/dev_pr.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/dev_pr.yml b/.github/workflows/dev_pr.yml
index c1723dcb9..bb087b6c4 100644
--- a/.github/workflows/dev_pr.yml
+++ b/.github/workflows/dev_pr.yml
@@ -68,6 +68,10 @@ jobs:
       # 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: |

Reply via email to