fix(deps): update patch dependencies #51
This file contains hidden or 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 MSW Service Worker | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| paths: | |
| - pnpm-lock.yaml | |
| jobs: | |
| UpdateMSW: | |
| if: github.actor == 'renovate[bot]' | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Setup Project | |
| uses: ./.github/actions/setup | |
| - name: Update mockServiceWorker.js | |
| run: pnpm msw init public --save | |
| - name: Commit changes | |
| uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7 | |
| with: | |
| commit_message: "chore: update mockServiceWorker.js" | |
| file_pattern: public/mockServiceWorker.js |