Skip to content

Commit

Permalink
remove variables for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Oct 24, 2023
1 parent d635df2 commit d136977
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Generate requirements.txt for readthedocs
name: Update depencies in poetry lockfile

on:
schedule:
Expand Down Expand Up @@ -26,18 +26,13 @@ jobs:
- name: "Update poetry lock file"
id: update
run: |
update_output=$(poetry run poetry update)
echo "update_output=$update_output" >> $GITHUB_OUTPUT
status=$(git status | grep poetry.lock)
echo "status=$status" >> $GITHUB_OUTPUT
poetry run poetry update
# 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 d136977

Please sign in to comment.