We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab30d44 commit 38cbe3eCopy full SHA for 38cbe3e
.github/workflows/update-versions-next-dev-iteration.yaml
@@ -91,3 +91,15 @@ jobs:
91
git add .
92
git commit -m "Update versions to ${{ env.NEXT_STABLE_VERSION }} and ${{ env.NEXT_BETA_VERSION }}"
93
git push origin "$branchName"
94
+
95
+ - name: Trigger the same job in the langchain4j-spring repo
96
+ uses: peter-evans/repository-dispatch@v4
97
+ with:
98
+ token: ${{ secrets.GH_RELEASE_AUTOMATION_PAT }}
99
+ repository: langchain4j/langchain4j-spring
100
+ event-type: trigger-update-versions-next-dev-iteration
101
+ client-payload: |
102
+ {
103
+ "nextStableVersion": "${{ env.NEXT_STABLE_VERSION }}",
104
+ "nextBetaVersion": "${{ env.NEXT_BETA_VERSION }}"
105
+ }
0 commit comments