You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/07/28 17:14:07 UTC

[GitHub] [arrow-rs] alamb commented on a diff in pull request #2213: Deliberately triggering CI workflows based on what files were changed

alamb commented on code in PR #2213:
URL: https://github.com/apache/arrow-rs/pull/2213#discussion_r932490530


##########
.github/workflows/dev_pr.yml:
##########
@@ -41,9 +42,3 @@ jobs:
           repo-token: ${{ secrets.GITHUB_TOKEN }}
           configuration-path: .github/workflows/dev_pr/labeler.yml
           sync-labels: true
-
-      #- name: Checks if PR needs rebase

Review Comment:
   driveby cleanup



##########
.github/workflows/arrow_flight.yml:
##########
@@ -19,8 +19,17 @@
 # tests for arrow_flight crate
 name: arrow_flight
 
+
+# trigger for all PRs that touch certain files and changes to master

Review Comment:
   This is the pattern: 
   
   ```
   on:
     push:
       branches:
         - master
   ```
   
   means "run on all changes to master"
   
   ```
   on:
     push:
       branches:
         - master
   ```
   
   Means "run only when files in arrow/** arrow-flight/** or .github/** change"



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org