Skip to content

feat: autogenerate changeset #25

feat: autogenerate changeset

feat: autogenerate changeset #25

Workflow file for this run

name: Update lockfile
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
update-lockfile:
if: startsWith(github.head_ref, 'snyk-')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Update lockfile
run: yarn install
- name: Commit and push changes
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add yarn.lock
git commit -n -m "chore(snyk): update lockfile"
git push