Skip to content

fix(deps): update dependency picocolors to v1.1.1 #1134

fix(deps): update dependency picocolors to v1.1.1

fix(deps): update dependency picocolors to v1.1.1 #1134

Workflow file for this run

name: Creating the mock service worker file
on:
pull_request_target:
branches:
- main
types: [opened]
jobs:
create_msw_file:
if: startsWith(github.head_ref, 'renovate/msw-')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- run: |
git config user.name github-actions
git config user.email [email protected]
npx msw init ./public
git add .
git commit -m "create service worker file"
git push origin HEAD:${{ github.head_ref }}