Skip to content

Commit

Permalink
WIP: Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainmouquet committed Oct 3, 2024
1 parent 8d1073e commit 3bc7eee
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ jobs:
before=$(make check:deps) || true
echo "before=${before}"
echo "before<<EOF" >> $GITHUB_ENV
echo "$before" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo ${after} >> report.txt
- name: Run make update
Expand All @@ -44,20 +42,12 @@ jobs:
after=$(make check:deps) || true
echo "after=${after}"
echo "after<<EOF" >> $GITHUB_ENV
echo "$after" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo ${after} >> new-report.txt
- name: Create or Update Pull Request
uses: peter-evans/create-pull-request@v7
with:
title: 'chore(deps): update npm dependencies'
body: |
Automated update of package-lock.json
- Before Update: ${{ env.before }}
- After Update: ${{ env.after }}
base: main
body: Automated update of package-lock.json
branch: update-npm-dependencies

0 comments on commit 3bc7eee

Please sign in to comment.