Bump Version #196
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump Version | |
on: | |
# manually trigger | |
workflow_dispatch: | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup git | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.17.0 | |
- name: rush publish | |
run: node common/scripts/install-run-rush.js publish -a | |
- name: git add | |
run: git add . | |
- name: rush change | |
run: node common/scripts/install-run-rush.js change --bulk --message "Bump Version" --bump-type none | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: 'chore: bump version' | |
base: main | |
title: 'chore: bump version' |