File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 80
80
jq --arg version "${{ github.event.inputs.version }}" '.mongodbOperator=$version' release.json > tmp_release.json
81
81
mv tmp_release.json release.json
82
82
git add release.json
83
- git commit -S -m "Update release.json with version ${{ github.event.inputs.version }}"
84
- git push origin ${{ github.event.inputs.branch_name }}
85
- env :
86
- GH_TOKEN : ${{ steps.app-token.outputs.token }}
83
+
84
+ - name : Create Pull Request
85
+ uses : peter-evans/create-pull-request@v7
86
+ with :
87
+ token : ${{ steps.app-token.outputs.token }}
88
+ sign-commits : true
89
+ commit-message : Release version `${{ github.event.inputs.version }}`
90
+ title : Release version `${{ github.event.inputs.version }}`
91
+ signoff : false
92
+ delete-branch : false
93
+ branch : bump-${{ github.event.inputs.version }}-version
94
+ draft : true
You can’t perform that action at this time.
0 commit comments