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 2fc20ef commit 63400dcCopy full SHA for 63400dc
.github/workflows/branch-snap.yml
@@ -64,10 +64,10 @@ jobs:
64
run: npm ci
65
- name: Update version.json for release
66
run: npx gulp updateVersionForStableRelease
67
- - name: Create PR with version update
68
- uses: peter-evans/create-pull-request@v4
69
- with:
70
- token: ${{ secrets.GITHUB_TOKEN }}
71
- commit-message: Update version for stable release
72
- branch: merge/prerelease-to-release
73
- base: release
+ - name: Commit and push version update
+ run: |
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
+ git add .
+ git commit -m "Update version for stable release"
+ git push origin merge/prerelease-to-release
0 commit comments