We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a35042 commit d8fce82Copy full SHA for d8fce82
1 file changed
.github/workflows/ci.yml
@@ -154,9 +154,15 @@ jobs:
154
echo "BRANCH_NAME=${BRANCH_NAME}" >> $GITHUB_ENV
155
echo "new_version=${NEW_VERSION}" >> $GITHUB_OUTPUT
156
157
- # Commit and push changes with GPG signing
158
- git add Cargo.toml
159
- git commit -m "chore: bump version to ${NEW_VERSION}"
+ - name: Commit version change
+ uses: iarekylew00t/verified-bot-commit@v1
+ with:
160
+ message: "chore: bump version to ${{ env.NEW_VERSION }}"
161
+ files: |
162
+ Cargo.toml
163
+
164
+ - name: Push branch
165
+ run: |
166
git push origin $BRANCH_NAME
167
168
- name: Create Pull Request
0 commit comments