There was an error while loading. Please reload this page.
1 parent b6e28b4 commit d5565c4Copy full SHA for d5565c4
1 file changed
.github/workflows/update-dependencies.yml
@@ -16,12 +16,15 @@ jobs:
16
- uses: actions/setup-node@v5
17
with:
18
node-version: 22
19
- - run: pnpm install
20
- - run: pnpm up --latest
+ - name: Update dependencies
+ run: |
21
+ pnpm install
22
+ pnpm up --latest
23
- name: Commit changes
24
run: |
- git config user.name "github-actions[bot]"
- git config user.email "github-actions[bot]@users.noreply.github.com"
25
git add package.json pnpm-lock.yaml
26
git commit -m "chore: update dependencies" || echo "No changes to commit"
27
- git push
+ - name: Push changes
28
+ run: git push
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments