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

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f42131c78e Enforce ordering to avoid svn conflicts (#34405)
6f42131c78e is described below

commit 6f42131c78ea80a66f58467cdcab4d10d19f64af
Author: Danny McCormick <[email protected]>
AuthorDate: Mon Mar 24 12:53:58 2025 -0400

    Enforce ordering to avoid svn conflicts (#34405)
---
 .github/workflows/build_release_candidate.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/build_release_candidate.yml 
b/.github/workflows/build_release_candidate.yml
index 3a31820ae64..9c4205071d5 100644
--- a/.github/workflows/build_release_candidate.yml
+++ b/.github/workflows/build_release_candidate.yml
@@ -161,6 +161,7 @@ jobs:
 
   stage_python_artifacts:
     if:  ${{ fromJson(github.event.inputs.STAGE).python_artifacts == 'yes'}}
+    needs: [publish_java_artifacts, build_and_stage_prism] # Enforce ordering 
to avoid svn conflicts
     runs-on: ubuntu-22.04
     steps:
       - name: Checkout
@@ -417,6 +418,7 @@ jobs:
 
   build_and_stage_prism:
     if: ${{ fromJson(github.event.inputs.STAGE).prism == 'yes'}}
+    needs: [publish_java_artifacts] # Enforce ordering to avoid svn conflicts
     runs-on: ubuntu-22.04
     steps:
       - name: Checkout

Reply via email to