Skip to content

Commit

Permalink
add output print of git status
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Oct 25, 2023
1 parent a8e3c5f commit 16d8645
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ jobs:
echo "$UPDATE_OUTPUT" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
STATUS=$(git status | grep poetry.lock)
echo "STATUS=$STATUS" >> $GITHUB_OUTPUT
STATUS=$(git status|tee >(cat - >&5))
echo "STATUS<<EOF" >> $GITHUB_OUTPUT
echo "$STATUS" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
# create pull request if necessary
- name: "Create Pull Request"
Expand Down

0 comments on commit 16d8645

Please sign in to comment.