We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 53ec452 + ca13f87 commit 467ee94Copy full SHA for 467ee94
.github/workflows/deploy.yml
@@ -28,3 +28,18 @@ jobs:
28
SIGN_KEY_PASS: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
29
OSSRH_USERNAME: ${{ secrets.SONATYPE_USER }}
30
OSSRH_PASSWORD: ${{ secrets.SONATYPE_PW }}
31
+
32
+ synchronize:
33
+ runs-on: ubuntu-latest
34
+ needs: deployment
35
+ steps:
36
+ - name: Checkout source code
37
+ uses: actions/checkout@v4
38
+ with:
39
+ fetch-depth: 0
40
41
+ - name: Synchronize master and develop
42
+ run: |
43
+ gh pr create -B develop -H master -t "Synchronize version in master and develop" -b "Update the version in `develop` from `master`"
44
+ env:
45
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments