chore: release main #120
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: Update lock file | |
on: | |
push: | |
branches: | |
- "release-please-**" | |
jobs: | |
update-pr: | |
permissions: | |
contents: write | |
name: update-pr | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref_name }} | |
fetch-depth: 2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- run: pnpm install --lockfile-only | |
- name: commit | |
run: | | |
git config --global user.name "release-please[bot]" | |
git config --global user.email "55107282+release-please[bot]@users.noreply.github.com" | |
git add pnpm-lock.yaml | |
git commit -m "Update lock file" --no-verify | |
git push origin --no-verify |