chore(deps-dev): bump stylelint from 14.16.1 to 15.10.1 (#6378) #203
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: Version | |
on: | |
push: | |
branches: | |
- release/** | |
jobs: | |
version: | |
name: Version | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16] | |
steps: | |
- name: Checkout Branch | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Setup git user | |
run: pnpm run setup-git | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
with: | |
version: pnpm run version | |
commit: 'chore: update versions' | |
title: 'chore: update versions' | |
setupGitUser: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }} |