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

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


The following commit(s) were added to refs/heads/main by this push:
     new 6564b471 MINOR: Fix typo in dev_pr.js (#626)
6564b471 is described below

commit 6564b471fcd8dfac3701660a157464feb5312220
Author: David Li <[email protected]>
AuthorDate: Thu Feb 20 21:12:05 2025 -0500

    MINOR: Fix typo in dev_pr.js (#626)
    
    ## What's Changed
    
    Fix a typo in the dev_pr script affecting MINOR PRs.
---
 .github/workflows/dev_pr.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/dev_pr.js b/.github/workflows/dev_pr.js
index 19fd6e56..13acc946 100644
--- a/.github/workflows/dev_pr.js
+++ b/.github/workflows/dev_pr.js
@@ -121,7 +121,7 @@ module.exports = {
     check_title_format: function({core, github, context}) {
         const title = context.payload.pull_request.title;
         if (title.startsWith("MINOR: ")) {
-            context.log("PR is a minor PR");
+            console.log("PR is a minor PR");
             return {"issue": null};
         }
 

Reply via email to