Skip to content

Commit

Permalink
Display outdated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hrishikesh-mahajan committed Aug 16, 2024
1 parent 7ec9e0e commit 427330b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/auto-update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
with:
version: "latest" # Specify the pnpm version you want

- name: Install pnpm dependencies
run: pnpm install --no-frozen-lockfile

- name: Get outdated dependencies
run: COMMIT_EDITMSG=$(pnpm outdated --long || true) && echo $COMMIT_EDITMSG

- name: Install Bun dependencies
run: bun install -y

Expand All @@ -44,7 +50,7 @@ jobs:
uses: peter-evans/create-pull-request@v6
with:
title: "Update dependencies"
body: "This PR updates dependencies to their latest versions."
body: "This PR updates dependencies to their latest versions.\n\n$COMMIT_EDITMSG"
branch: "update-deps"
commit-message: "chore(deps): update dependencies"
commit-message: "chore(deps): update dependencies\n\n$COMMIT_EDITMSG"
base: "main" # Specify your default branch

0 comments on commit 427330b

Please sign in to comment.