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 cb4e7e9 commit 36b8bd0
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
- name: Save check dependencies output (before)
id: check_deps_before
run: |
before=$(make check:deps) || true
echo "before=${before}"
BEFORE=$(make check:deps) || true
echo "BEFORE=${BEFORE}"
echo "before<<EOF" >> $GITHUB_ENV
echo "$before" >> $GITHUB_ENV
echo "BEFORE<<EOF" >> $GITHUB_ENV
echo "$BEFORE" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
Expand All @@ -42,10 +42,10 @@ jobs:
id: check_deps_after
run: |
after=$(make check:deps) || true
echo "after=${after}"
echo "AFTER=${AFTER}"
echo "after<<EOF" >> $GITHUB_ENV
echo "$after" >> $GITHUB_ENV
echo "AFTER<<EOF" >> $GITHUB_ENV
echo "$AFTER" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Create or Update Pull Request
Expand All @@ -55,9 +55,11 @@ jobs:
body: |
Automated update of package-lock.json
- Before Update: $before
**Before:**
${BEFORE}
- After Update: $after
**After:**
${AFTER}
base: main
branch: update-npm-dependencies

0 comments on commit 36b8bd0

Please sign in to comment.