File tree Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change 36
36
echo "prefix=release" >> $GITHUB_OUTPUT
37
37
fi
38
38
39
- - name : Create feature branch
40
- run : |
41
- BRANCH_NAME="update-version-${{ inputs.version }}"
42
- git checkout -b "$BRANCH_NAME"
43
-
44
39
- name : Update build.gradle.kts (root)
45
40
run : |
46
41
# Get current version from build.gradle.kts
@@ -101,20 +96,12 @@ jobs:
101
96
# Clean up
102
97
rm -f current_version.txt
103
98
104
- - name : Commit changes
105
- run : |
106
- git add build.gradle.kts README.md android_test/app/build.gradle.kts CHANGELOG.md
107
- git commit -m "${{ steps.pr-prefix.outputs.prefix }}: ${{ inputs.version }}"
108
-
109
- - name : Push changes
110
- run : |
111
- git push origin "update-version-${{ inputs.version }}"
112
-
113
99
- name : Create Pull Request
114
100
uses : peter-evans/create-pull-request@v5
115
101
with :
116
102
token : ${{ secrets.GITHUB_TOKEN }}
117
103
branch : update-version-${{ inputs.version }}
104
+ commit-message : " ${{ steps.pr-prefix.outputs.prefix }}: ${{ inputs.version }}"
118
105
title : " ${{ steps.pr-prefix.outputs.prefix }}: ${{ inputs.version }}"
119
106
body : |
120
107
This PR updates the java-stellar-sdk version to ${{ inputs.version }}.
You can’t perform that action at this time.
0 commit comments