Skip to content

Commit

Permalink
add poetry self update, and try once more status check
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Oct 24, 2023
1 parent d136977 commit 92a9ba9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,18 @@ jobs:
- name: "Update poetry lock file"
id: update
run: |
poetry run poetry self update
poetry run poetry update
status=$(git status | grep poetry.lock)
echo "status=$status" >> $GITHUB_OUTPUT
# create pull request if necessary
- name: "Create Pull Request"
uses: peter-evans/create-pull-request@v5
if: ${{ steps.update.outputs.status != '' }}
with:
commit-message: Update dependencies
title: "Update dependencies"
body: |
- Dependency updates
${{ steps.update.outputs.update_output }}

0 comments on commit 92a9ba9

Please sign in to comment.