Skip to content

Commit

Permalink
ci(update-deps): fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjavi committed Aug 9, 2023
1 parent bf76572 commit 69cd4b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
id: compare_changes
run: |
changes=$(git diff --name-only HEAD~1)
echo "pending_git_changes=${changes}" >> "$GITHUB_OUTPUT"
changes=$(git diff --name-only HEAD~1)
IFS=$'\n' read -rd '' -a changed_files <<< "$changes"
echo "pending_git_changes=${changed_files[*]}" >> "$GITHUB_OUTPUT"
createPullRequest:
name: 'Create Pull Request'
Expand Down

0 comments on commit 69cd4b8

Please sign in to comment.